com.amazonaws.services.drs.model.GetFailbackReplicationConfigurationResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk-drs Show documentation
/*
* Copyright 2018-2023 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.drs.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class GetFailbackReplicationConfigurationResult extends com.amazonaws.AmazonWebServiceResult implements Serializable,
Cloneable {
/**
*
* Configure bandwidth throttling for the outbound data transfer rate of the Recovery Instance in Mbps.
*
*/
private Long bandwidthThrottling;
/**
*
* The name of the Failback Replication Configuration.
*
*/
private String name;
/**
*
* The ID of the Recovery Instance.
*
*/
private String recoveryInstanceID;
/**
*
* Whether to use Private IP for the failback replication of the Recovery Instance.
*
*/
private Boolean usePrivateIP;
/**
*
* Configure bandwidth throttling for the outbound data transfer rate of the Recovery Instance in Mbps.
*
*
* @param bandwidthThrottling
* Configure bandwidth throttling for the outbound data transfer rate of the Recovery Instance in Mbps.
*/
public void setBandwidthThrottling(Long bandwidthThrottling) {
this.bandwidthThrottling = bandwidthThrottling;
}
/**
*
* Configure bandwidth throttling for the outbound data transfer rate of the Recovery Instance in Mbps.
*
*
* @return Configure bandwidth throttling for the outbound data transfer rate of the Recovery Instance in Mbps.
*/
public Long getBandwidthThrottling() {
return this.bandwidthThrottling;
}
/**
*
* Configure bandwidth throttling for the outbound data transfer rate of the Recovery Instance in Mbps.
*
*
* @param bandwidthThrottling
* Configure bandwidth throttling for the outbound data transfer rate of the Recovery Instance in Mbps.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetFailbackReplicationConfigurationResult withBandwidthThrottling(Long bandwidthThrottling) {
setBandwidthThrottling(bandwidthThrottling);
return this;
}
/**
*
* The name of the Failback Replication Configuration.
*
*
* @param name
* The name of the Failback Replication Configuration.
*/
public void setName(String name) {
this.name = name;
}
/**
*
* The name of the Failback Replication Configuration.
*
*
* @return The name of the Failback Replication Configuration.
*/
public String getName() {
return this.name;
}
/**
*
* The name of the Failback Replication Configuration.
*
*
* @param name
* The name of the Failback Replication Configuration.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetFailbackReplicationConfigurationResult withName(String name) {
setName(name);
return this;
}
/**
*
* The ID of the Recovery Instance.
*
*
* @param recoveryInstanceID
* The ID of the Recovery Instance.
*/
public void setRecoveryInstanceID(String recoveryInstanceID) {
this.recoveryInstanceID = recoveryInstanceID;
}
/**
*
* The ID of the Recovery Instance.
*
*
* @return The ID of the Recovery Instance.
*/
public String getRecoveryInstanceID() {
return this.recoveryInstanceID;
}
/**
*
* The ID of the Recovery Instance.
*
*
* @param recoveryInstanceID
* The ID of the Recovery Instance.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetFailbackReplicationConfigurationResult withRecoveryInstanceID(String recoveryInstanceID) {
setRecoveryInstanceID(recoveryInstanceID);
return this;
}
/**
*
* Whether to use Private IP for the failback replication of the Recovery Instance.
*
*
* @param usePrivateIP
* Whether to use Private IP for the failback replication of the Recovery Instance.
*/
public void setUsePrivateIP(Boolean usePrivateIP) {
this.usePrivateIP = usePrivateIP;
}
/**
*
* Whether to use Private IP for the failback replication of the Recovery Instance.
*
*
* @return Whether to use Private IP for the failback replication of the Recovery Instance.
*/
public Boolean getUsePrivateIP() {
return this.usePrivateIP;
}
/**
*
* Whether to use Private IP for the failback replication of the Recovery Instance.
*
*
* @param usePrivateIP
* Whether to use Private IP for the failback replication of the Recovery Instance.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetFailbackReplicationConfigurationResult withUsePrivateIP(Boolean usePrivateIP) {
setUsePrivateIP(usePrivateIP);
return this;
}
/**
*
* Whether to use Private IP for the failback replication of the Recovery Instance.
*
*
* @return Whether to use Private IP for the failback replication of the Recovery Instance.
*/
public Boolean isUsePrivateIP() {
return this.usePrivateIP;
}
/**
* 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 (getBandwidthThrottling() != null)
sb.append("BandwidthThrottling: ").append(getBandwidthThrottling()).append(",");
if (getName() != null)
sb.append("Name: ").append(getName()).append(",");
if (getRecoveryInstanceID() != null)
sb.append("RecoveryInstanceID: ").append(getRecoveryInstanceID()).append(",");
if (getUsePrivateIP() != null)
sb.append("UsePrivateIP: ").append(getUsePrivateIP());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof GetFailbackReplicationConfigurationResult == false)
return false;
GetFailbackReplicationConfigurationResult other = (GetFailbackReplicationConfigurationResult) obj;
if (other.getBandwidthThrottling() == null ^ this.getBandwidthThrottling() == null)
return false;
if (other.getBandwidthThrottling() != null && other.getBandwidthThrottling().equals(this.getBandwidthThrottling()) == 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.getRecoveryInstanceID() == null ^ this.getRecoveryInstanceID() == null)
return false;
if (other.getRecoveryInstanceID() != null && other.getRecoveryInstanceID().equals(this.getRecoveryInstanceID()) == false)
return false;
if (other.getUsePrivateIP() == null ^ this.getUsePrivateIP() == null)
return false;
if (other.getUsePrivateIP() != null && other.getUsePrivateIP().equals(this.getUsePrivateIP()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getBandwidthThrottling() == null) ? 0 : getBandwidthThrottling().hashCode());
hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode());
hashCode = prime * hashCode + ((getRecoveryInstanceID() == null) ? 0 : getRecoveryInstanceID().hashCode());
hashCode = prime * hashCode + ((getUsePrivateIP() == null) ? 0 : getUsePrivateIP().hashCode());
return hashCode;
}
@Override
public GetFailbackReplicationConfigurationResult clone() {
try {
return (GetFailbackReplicationConfigurationResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}