Package com.amazonaws.services.ec2.model
Class CreateRouteTableResult
- java.lang.Object
-
- com.amazonaws.services.ec2.model.CreateRouteTableResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class CreateRouteTableResult extends Object implements Serializable, Cloneable
Contains the output of CreateRouteTable.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CreateRouteTableResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CreateRouteTableResult
clone()
boolean
equals(Object obj)
RouteTable
getRouteTable()
Information about the route table.int
hashCode()
void
setRouteTable(RouteTable routeTable)
Information about the route table.String
toString()
Returns a string representation of this object; useful for testing and debugging.CreateRouteTableResult
withRouteTable(RouteTable routeTable)
Information about the route table.
-
-
-
Method Detail
-
setRouteTable
public void setRouteTable(RouteTable routeTable)
Information about the route table.
- Parameters:
routeTable
- Information about the route table.
-
getRouteTable
public RouteTable getRouteTable()
Information about the route table.
- Returns:
- Information about the route table.
-
withRouteTable
public CreateRouteTableResult withRouteTable(RouteTable routeTable)
Information about the route table.
- Parameters:
routeTable
- Information about 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 CreateRouteTableResult clone()
-
-