Package com.amazonaws.services.ec2.model
Class MoveAddressToVpcResult
- java.lang.Object
-
- com.amazonaws.services.ec2.model.MoveAddressToVpcResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class MoveAddressToVpcResult extends Object implements Serializable, Cloneable
Contains the output of MoveAddressToVpc.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MoveAddressToVpcResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MoveAddressToVpcResultclone()booleanequals(Object obj)StringgetAllocationId()The allocation ID for the Elastic IP address.StringgetStatus()The status of the move of the IP address.inthashCode()voidsetAllocationId(String allocationId)The allocation ID for the Elastic IP address.voidsetStatus(Status status)The status of the move of the IP address.voidsetStatus(String status)The status of the move of the IP address.StringtoString()Returns a string representation of this object; useful for testing and debugging.MoveAddressToVpcResultwithAllocationId(String allocationId)The allocation ID for the Elastic IP address.MoveAddressToVpcResultwithStatus(Status status)The status of the move of the IP address.MoveAddressToVpcResultwithStatus(String status)The status of the move of the IP address.
-
-
-
Method Detail
-
setAllocationId
public void setAllocationId(String allocationId)
The allocation ID for the Elastic IP address.
- Parameters:
allocationId- The allocation ID for the Elastic IP address.
-
getAllocationId
public String getAllocationId()
The allocation ID for the Elastic IP address.
- Returns:
- The allocation ID for the Elastic IP address.
-
withAllocationId
public MoveAddressToVpcResult withAllocationId(String allocationId)
The allocation ID for the Elastic IP address.
- Parameters:
allocationId- The allocation ID for the Elastic IP address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setStatus
public void setStatus(String status)
The status of the move of the IP address.
- Parameters:
status- The status of the move of the IP address.- See Also:
Status
-
getStatus
public String getStatus()
The status of the move of the IP address.
- Returns:
- The status of the move of the IP address.
- See Also:
Status
-
withStatus
public MoveAddressToVpcResult withStatus(String status)
The status of the move of the IP address.
- Parameters:
status- The status of the move of the IP address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Status
-
setStatus
public void setStatus(Status status)
The status of the move of the IP address.
- Parameters:
status- The status of the move of the IP address.- See Also:
Status
-
withStatus
public MoveAddressToVpcResult withStatus(Status status)
The status of the move of the IP address.
- Parameters:
status- The status of the move of the IP address.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Status
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public MoveAddressToVpcResult clone()
-
-