Package com.amazonaws.services.ec2.model
Class AssociateRouteTableResult
- java.lang.Object
-
- com.amazonaws.services.ec2.model.AssociateRouteTableResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class AssociateRouteTableResult extends Object implements Serializable, Cloneable
Contains the output of AssociateRouteTable.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AssociateRouteTableResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AssociateRouteTableResult
clone()
boolean
equals(Object obj)
String
getAssociationId()
The route table association ID (needed to disassociate the route table).int
hashCode()
void
setAssociationId(String associationId)
The route table association ID (needed to disassociate the route table).String
toString()
Returns a string representation of this object; useful for testing and debugging.AssociateRouteTableResult
withAssociationId(String associationId)
The route table association ID (needed to disassociate the route table).
-
-
-
Method Detail
-
setAssociationId
public void setAssociationId(String associationId)
The route table association ID (needed to disassociate the route table).
- Parameters:
associationId
- The route table association ID (needed to disassociate the route table).
-
getAssociationId
public String getAssociationId()
The route table association ID (needed to disassociate the route table).
- Returns:
- The route table association ID (needed to disassociate the route table).
-
withAssociationId
public AssociateRouteTableResult withAssociationId(String associationId)
The route table association ID (needed to disassociate the route table).
- Parameters:
associationId
- The route table association ID (needed to disassociate the route table).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
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 AssociateRouteTableResult clone()
-
-