com.amazonaws.services.ec2.model.AddressTransfer Maven / Gradle / Ivy
Show all versions of aws-java-sdk-ec2 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.ec2.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* Details on the Elastic IP address transfer. For more information, see Transfer Elastic IP
* addresses in the Amazon Virtual Private Cloud User Guide.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class AddressTransfer implements Serializable, Cloneable {
/**
*
* The Elastic IP address being transferred.
*
*/
private String publicIp;
/**
*
* The allocation ID of an Elastic IP address.
*
*/
private String allocationId;
/**
*
* The ID of the account that you want to transfer the Elastic IP address to.
*
*/
private String transferAccountId;
/**
*
* The timestamp when the Elastic IP address transfer expired. When the source account starts the transfer, the
* transfer account has seven hours to allocate the Elastic IP address to complete the transfer, or the Elastic IP
* address will return to its original owner.
*
*/
private java.util.Date transferOfferExpirationTimestamp;
/**
*
* The timestamp when the Elastic IP address transfer was accepted.
*
*/
private java.util.Date transferOfferAcceptedTimestamp;
/**
*
* The Elastic IP address transfer status.
*
*/
private String addressTransferStatus;
/**
*
* The Elastic IP address being transferred.
*
*
* @param publicIp
* The Elastic IP address being transferred.
*/
public void setPublicIp(String publicIp) {
this.publicIp = publicIp;
}
/**
*
* The Elastic IP address being transferred.
*
*
* @return The Elastic IP address being transferred.
*/
public String getPublicIp() {
return this.publicIp;
}
/**
*
* The Elastic IP address being transferred.
*
*
* @param publicIp
* The Elastic IP address being transferred.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AddressTransfer withPublicIp(String publicIp) {
setPublicIp(publicIp);
return this;
}
/**
*
* The allocation ID of an Elastic IP address.
*
*
* @param allocationId
* The allocation ID of an Elastic IP address.
*/
public void setAllocationId(String allocationId) {
this.allocationId = allocationId;
}
/**
*
* The allocation ID of an Elastic IP address.
*
*
* @return The allocation ID of an Elastic IP address.
*/
public String getAllocationId() {
return this.allocationId;
}
/**
*
* The allocation ID of an Elastic IP address.
*
*
* @param allocationId
* The allocation ID of an Elastic IP address.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AddressTransfer withAllocationId(String allocationId) {
setAllocationId(allocationId);
return this;
}
/**
*
* The ID of the account that you want to transfer the Elastic IP address to.
*
*
* @param transferAccountId
* The ID of the account that you want to transfer the Elastic IP address to.
*/
public void setTransferAccountId(String transferAccountId) {
this.transferAccountId = transferAccountId;
}
/**
*
* The ID of the account that you want to transfer the Elastic IP address to.
*
*
* @return The ID of the account that you want to transfer the Elastic IP address to.
*/
public String getTransferAccountId() {
return this.transferAccountId;
}
/**
*
* The ID of the account that you want to transfer the Elastic IP address to.
*
*
* @param transferAccountId
* The ID of the account that you want to transfer the Elastic IP address to.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AddressTransfer withTransferAccountId(String transferAccountId) {
setTransferAccountId(transferAccountId);
return this;
}
/**
*
* The timestamp when the Elastic IP address transfer expired. When the source account starts the transfer, the
* transfer account has seven hours to allocate the Elastic IP address to complete the transfer, or the Elastic IP
* address will return to its original owner.
*
*
* @param transferOfferExpirationTimestamp
* The timestamp when the Elastic IP address transfer expired. When the source account starts the transfer,
* the transfer account has seven hours to allocate the Elastic IP address to complete the transfer, or the
* Elastic IP address will return to its original owner.
*/
public void setTransferOfferExpirationTimestamp(java.util.Date transferOfferExpirationTimestamp) {
this.transferOfferExpirationTimestamp = transferOfferExpirationTimestamp;
}
/**
*
* The timestamp when the Elastic IP address transfer expired. When the source account starts the transfer, the
* transfer account has seven hours to allocate the Elastic IP address to complete the transfer, or the Elastic IP
* address will return to its original owner.
*
*
* @return The timestamp when the Elastic IP address transfer expired. When the source account starts the transfer,
* the transfer account has seven hours to allocate the Elastic IP address to complete the transfer, or the
* Elastic IP address will return to its original owner.
*/
public java.util.Date getTransferOfferExpirationTimestamp() {
return this.transferOfferExpirationTimestamp;
}
/**
*
* The timestamp when the Elastic IP address transfer expired. When the source account starts the transfer, the
* transfer account has seven hours to allocate the Elastic IP address to complete the transfer, or the Elastic IP
* address will return to its original owner.
*
*
* @param transferOfferExpirationTimestamp
* The timestamp when the Elastic IP address transfer expired. When the source account starts the transfer,
* the transfer account has seven hours to allocate the Elastic IP address to complete the transfer, or the
* Elastic IP address will return to its original owner.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AddressTransfer withTransferOfferExpirationTimestamp(java.util.Date transferOfferExpirationTimestamp) {
setTransferOfferExpirationTimestamp(transferOfferExpirationTimestamp);
return this;
}
/**
*
* The timestamp when the Elastic IP address transfer was accepted.
*
*
* @param transferOfferAcceptedTimestamp
* The timestamp when the Elastic IP address transfer was accepted.
*/
public void setTransferOfferAcceptedTimestamp(java.util.Date transferOfferAcceptedTimestamp) {
this.transferOfferAcceptedTimestamp = transferOfferAcceptedTimestamp;
}
/**
*
* The timestamp when the Elastic IP address transfer was accepted.
*
*
* @return The timestamp when the Elastic IP address transfer was accepted.
*/
public java.util.Date getTransferOfferAcceptedTimestamp() {
return this.transferOfferAcceptedTimestamp;
}
/**
*
* The timestamp when the Elastic IP address transfer was accepted.
*
*
* @param transferOfferAcceptedTimestamp
* The timestamp when the Elastic IP address transfer was accepted.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AddressTransfer withTransferOfferAcceptedTimestamp(java.util.Date transferOfferAcceptedTimestamp) {
setTransferOfferAcceptedTimestamp(transferOfferAcceptedTimestamp);
return this;
}
/**
*
* The Elastic IP address transfer status.
*
*
* @param addressTransferStatus
* The Elastic IP address transfer status.
* @see AddressTransferStatus
*/
public void setAddressTransferStatus(String addressTransferStatus) {
this.addressTransferStatus = addressTransferStatus;
}
/**
*
* The Elastic IP address transfer status.
*
*
* @return The Elastic IP address transfer status.
* @see AddressTransferStatus
*/
public String getAddressTransferStatus() {
return this.addressTransferStatus;
}
/**
*
* The Elastic IP address transfer status.
*
*
* @param addressTransferStatus
* The Elastic IP address transfer status.
* @return Returns a reference to this object so that method calls can be chained together.
* @see AddressTransferStatus
*/
public AddressTransfer withAddressTransferStatus(String addressTransferStatus) {
setAddressTransferStatus(addressTransferStatus);
return this;
}
/**
*
* The Elastic IP address transfer status.
*
*
* @param addressTransferStatus
* The Elastic IP address transfer status.
* @return Returns a reference to this object so that method calls can be chained together.
* @see AddressTransferStatus
*/
public AddressTransfer withAddressTransferStatus(AddressTransferStatus addressTransferStatus) {
this.addressTransferStatus = addressTransferStatus.toString();
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 (getPublicIp() != null)
sb.append("PublicIp: ").append(getPublicIp()).append(",");
if (getAllocationId() != null)
sb.append("AllocationId: ").append(getAllocationId()).append(",");
if (getTransferAccountId() != null)
sb.append("TransferAccountId: ").append(getTransferAccountId()).append(",");
if (getTransferOfferExpirationTimestamp() != null)
sb.append("TransferOfferExpirationTimestamp: ").append(getTransferOfferExpirationTimestamp()).append(",");
if (getTransferOfferAcceptedTimestamp() != null)
sb.append("TransferOfferAcceptedTimestamp: ").append(getTransferOfferAcceptedTimestamp()).append(",");
if (getAddressTransferStatus() != null)
sb.append("AddressTransferStatus: ").append(getAddressTransferStatus());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof AddressTransfer == false)
return false;
AddressTransfer other = (AddressTransfer) obj;
if (other.getPublicIp() == null ^ this.getPublicIp() == null)
return false;
if (other.getPublicIp() != null && other.getPublicIp().equals(this.getPublicIp()) == false)
return false;
if (other.getAllocationId() == null ^ this.getAllocationId() == null)
return false;
if (other.getAllocationId() != null && other.getAllocationId().equals(this.getAllocationId()) == false)
return false;
if (other.getTransferAccountId() == null ^ this.getTransferAccountId() == null)
return false;
if (other.getTransferAccountId() != null && other.getTransferAccountId().equals(this.getTransferAccountId()) == false)
return false;
if (other.getTransferOfferExpirationTimestamp() == null ^ this.getTransferOfferExpirationTimestamp() == null)
return false;
if (other.getTransferOfferExpirationTimestamp() != null
&& other.getTransferOfferExpirationTimestamp().equals(this.getTransferOfferExpirationTimestamp()) == false)
return false;
if (other.getTransferOfferAcceptedTimestamp() == null ^ this.getTransferOfferAcceptedTimestamp() == null)
return false;
if (other.getTransferOfferAcceptedTimestamp() != null
&& other.getTransferOfferAcceptedTimestamp().equals(this.getTransferOfferAcceptedTimestamp()) == false)
return false;
if (other.getAddressTransferStatus() == null ^ this.getAddressTransferStatus() == null)
return false;
if (other.getAddressTransferStatus() != null && other.getAddressTransferStatus().equals(this.getAddressTransferStatus()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getPublicIp() == null) ? 0 : getPublicIp().hashCode());
hashCode = prime * hashCode + ((getAllocationId() == null) ? 0 : getAllocationId().hashCode());
hashCode = prime * hashCode + ((getTransferAccountId() == null) ? 0 : getTransferAccountId().hashCode());
hashCode = prime * hashCode + ((getTransferOfferExpirationTimestamp() == null) ? 0 : getTransferOfferExpirationTimestamp().hashCode());
hashCode = prime * hashCode + ((getTransferOfferAcceptedTimestamp() == null) ? 0 : getTransferOfferAcceptedTimestamp().hashCode());
hashCode = prime * hashCode + ((getAddressTransferStatus() == null) ? 0 : getAddressTransferStatus().hashCode());
return hashCode;
}
@Override
public AddressTransfer clone() {
try {
return (AddressTransfer) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}