
com.amazonaws.services.route53.model.ChangeResourceRecordSetsRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-route53 Show documentation
/*
* Copyright 2011-2016 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.route53.model;
import java.io.Serializable;
import com.amazonaws.AmazonWebServiceRequest;
/**
*
* A complex type that contains change information for the resource record set.
*
*/
public class ChangeResourceRecordSetsRequest extends
com.amazonaws.AmazonWebServiceRequest implements Serializable,
Cloneable {
/**
*
* The ID of the hosted zone that contains the resource record sets that you
* want to change.
*
*/
private String hostedZoneId;
/**
*
* A complex type that contains an optional comment and the
* Changes
element.
*
*/
private ChangeBatch changeBatch;
/**
* Default constructor for ChangeResourceRecordSetsRequest object. Callers
* should use the setter or fluent setter (with...) methods to initialize
* the object after creating it.
*/
public ChangeResourceRecordSetsRequest() {
}
/**
* Constructs a new ChangeResourceRecordSetsRequest object. Callers should
* use the setter or fluent setter (with...) methods to initialize any
* additional object members.
*
* @param hostedZoneId
* The ID of the hosted zone that contains the resource record sets
* that you want to change.
* @param changeBatch
* A complex type that contains an optional comment and the
* Changes
element.
*/
public ChangeResourceRecordSetsRequest(String hostedZoneId,
ChangeBatch changeBatch) {
setHostedZoneId(hostedZoneId);
setChangeBatch(changeBatch);
}
/**
*
* The ID of the hosted zone that contains the resource record sets that you
* want to change.
*
*
* @param hostedZoneId
* The ID of the hosted zone that contains the resource record sets
* that you want to change.
*/
public void setHostedZoneId(String hostedZoneId) {
this.hostedZoneId = hostedZoneId;
}
/**
*
* The ID of the hosted zone that contains the resource record sets that you
* want to change.
*
*
* @return The ID of the hosted zone that contains the resource record sets
* that you want to change.
*/
public String getHostedZoneId() {
return this.hostedZoneId;
}
/**
*
* The ID of the hosted zone that contains the resource record sets that you
* want to change.
*
*
* @param hostedZoneId
* The ID of the hosted zone that contains the resource record sets
* that you want to change.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public ChangeResourceRecordSetsRequest withHostedZoneId(String hostedZoneId) {
setHostedZoneId(hostedZoneId);
return this;
}
/**
*
* A complex type that contains an optional comment and the
* Changes
element.
*
*
* @param changeBatch
* A complex type that contains an optional comment and the
* Changes
element.
*/
public void setChangeBatch(ChangeBatch changeBatch) {
this.changeBatch = changeBatch;
}
/**
*
* A complex type that contains an optional comment and the
* Changes
element.
*
*
* @return A complex type that contains an optional comment and the
* Changes
element.
*/
public ChangeBatch getChangeBatch() {
return this.changeBatch;
}
/**
*
* A complex type that contains an optional comment and the
* Changes
element.
*
*
* @param changeBatch
* A complex type that contains an optional comment and the
* Changes
element.
* @return Returns a reference to this object so that method calls can be
* chained together.
*/
public ChangeResourceRecordSetsRequest withChangeBatch(
ChangeBatch changeBatch) {
setChangeBatch(changeBatch);
return this;
}
/**
* Returns a string representation of this object; useful for testing and
* debugging.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getHostedZoneId() != null)
sb.append("HostedZoneId: " + getHostedZoneId() + ",");
if (getChangeBatch() != null)
sb.append("ChangeBatch: " + getChangeBatch());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ChangeResourceRecordSetsRequest == false)
return false;
ChangeResourceRecordSetsRequest other = (ChangeResourceRecordSetsRequest) obj;
if (other.getHostedZoneId() == null ^ this.getHostedZoneId() == null)
return false;
if (other.getHostedZoneId() != null
&& other.getHostedZoneId().equals(this.getHostedZoneId()) == false)
return false;
if (other.getChangeBatch() == null ^ this.getChangeBatch() == null)
return false;
if (other.getChangeBatch() != null
&& other.getChangeBatch().equals(this.getChangeBatch()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime
* hashCode
+ ((getHostedZoneId() == null) ? 0 : getHostedZoneId()
.hashCode());
hashCode = prime
* hashCode
+ ((getChangeBatch() == null) ? 0 : getChangeBatch().hashCode());
return hashCode;
}
@Override
public ChangeResourceRecordSetsRequest clone() {
return (ChangeResourceRecordSetsRequest) super.clone();
}
}