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 MoveAddressToVpcResult
clone()
boolean
equals(Object obj)
String
getAllocationId()
The allocation ID for the Elastic IP address.String
getStatus()
The status of the move of the IP address.int
hashCode()
void
setAllocationId(String allocationId)
The allocation ID for the Elastic IP address.void
setStatus(Status status)
The status of the move of the IP address.void
setStatus(String status)
The status of the move of the IP address.String
toString()
Returns a string representation of this object; useful for testing and debugging.MoveAddressToVpcResult
withAllocationId(String allocationId)
The allocation ID for the Elastic IP address.MoveAddressToVpcResult
withStatus(Status status)
The status of the move of the IP address.MoveAddressToVpcResult
withStatus(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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public MoveAddressToVpcResult clone()
-
-