com.amazonaws.services.robomaker.model.UpdateWorldTemplateRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-robomaker Show documentation
/*
* Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.robomaker.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.AmazonWebServiceRequest;
/**
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class UpdateWorldTemplateRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The Amazon Resource Name (arn) of the world template to update.
*
*/
private String template;
/**
*
* The name of the template.
*
*/
private String name;
/**
*
* The world template body.
*
*/
private String templateBody;
/**
*
* The location of the world template.
*
*/
private TemplateLocation templateLocation;
/**
*
* The Amazon Resource Name (arn) of the world template to update.
*
*
* @param template
* The Amazon Resource Name (arn) of the world template to update.
*/
public void setTemplate(String template) {
this.template = template;
}
/**
*
* The Amazon Resource Name (arn) of the world template to update.
*
*
* @return The Amazon Resource Name (arn) of the world template to update.
*/
public String getTemplate() {
return this.template;
}
/**
*
* The Amazon Resource Name (arn) of the world template to update.
*
*
* @param template
* The Amazon Resource Name (arn) of the world template to update.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateWorldTemplateRequest withTemplate(String template) {
setTemplate(template);
return this;
}
/**
*
* The name of the template.
*
*
* @param name
* The name of the template.
*/
public void setName(String name) {
this.name = name;
}
/**
*
* The name of the template.
*
*
* @return The name of the template.
*/
public String getName() {
return this.name;
}
/**
*
* The name of the template.
*
*
* @param name
* The name of the template.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateWorldTemplateRequest withName(String name) {
setName(name);
return this;
}
/**
*
* The world template body.
*
*
* @param templateBody
* The world template body.
*/
public void setTemplateBody(String templateBody) {
this.templateBody = templateBody;
}
/**
*
* The world template body.
*
*
* @return The world template body.
*/
public String getTemplateBody() {
return this.templateBody;
}
/**
*
* The world template body.
*
*
* @param templateBody
* The world template body.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateWorldTemplateRequest withTemplateBody(String templateBody) {
setTemplateBody(templateBody);
return this;
}
/**
*
* The location of the world template.
*
*
* @param templateLocation
* The location of the world template.
*/
public void setTemplateLocation(TemplateLocation templateLocation) {
this.templateLocation = templateLocation;
}
/**
*
* The location of the world template.
*
*
* @return The location of the world template.
*/
public TemplateLocation getTemplateLocation() {
return this.templateLocation;
}
/**
*
* The location of the world template.
*
*
* @param templateLocation
* The location of the world template.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdateWorldTemplateRequest withTemplateLocation(TemplateLocation templateLocation) {
setTemplateLocation(templateLocation);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getTemplate() != null)
sb.append("Template: ").append(getTemplate()).append(",");
if (getName() != null)
sb.append("Name: ").append(getName()).append(",");
if (getTemplateBody() != null)
sb.append("TemplateBody: ").append(getTemplateBody()).append(",");
if (getTemplateLocation() != null)
sb.append("TemplateLocation: ").append(getTemplateLocation());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof UpdateWorldTemplateRequest == false)
return false;
UpdateWorldTemplateRequest other = (UpdateWorldTemplateRequest) obj;
if (other.getTemplate() == null ^ this.getTemplate() == null)
return false;
if (other.getTemplate() != null && other.getTemplate().equals(this.getTemplate()) == false)
return false;
if (other.getName() == null ^ this.getName() == null)
return false;
if (other.getName() != null && other.getName().equals(this.getName()) == false)
return false;
if (other.getTemplateBody() == null ^ this.getTemplateBody() == null)
return false;
if (other.getTemplateBody() != null && other.getTemplateBody().equals(this.getTemplateBody()) == false)
return false;
if (other.getTemplateLocation() == null ^ this.getTemplateLocation() == null)
return false;
if (other.getTemplateLocation() != null && other.getTemplateLocation().equals(this.getTemplateLocation()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getTemplate() == null) ? 0 : getTemplate().hashCode());
hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode());
hashCode = prime * hashCode + ((getTemplateBody() == null) ? 0 : getTemplateBody().hashCode());
hashCode = prime * hashCode + ((getTemplateLocation() == null) ? 0 : getTemplateLocation().hashCode());
return hashCode;
}
@Override
public UpdateWorldTemplateRequest clone() {
return (UpdateWorldTemplateRequest) super.clone();
}
}