Package com.amazonaws.services.ec2.model
Class DeleteNatGatewayResult
- java.lang.Object
-
- com.amazonaws.services.ec2.model.DeleteNatGatewayResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DeleteNatGatewayResult extends Object implements Serializable, Cloneable
Contains the output of DeleteNatGateway.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DeleteNatGatewayResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DeleteNatGatewayResult
clone()
boolean
equals(Object obj)
String
getNatGatewayId()
The ID of the NAT gateway.int
hashCode()
void
setNatGatewayId(String natGatewayId)
The ID of the NAT gateway.String
toString()
Returns a string representation of this object; useful for testing and debugging.DeleteNatGatewayResult
withNatGatewayId(String natGatewayId)
The ID of the NAT gateway.
-
-
-
Method Detail
-
setNatGatewayId
public void setNatGatewayId(String natGatewayId)
The ID of the NAT gateway.
- Parameters:
natGatewayId
- The ID of the NAT gateway.
-
getNatGatewayId
public String getNatGatewayId()
The ID of the NAT gateway.
- Returns:
- The ID of the NAT gateway.
-
withNatGatewayId
public DeleteNatGatewayResult withNatGatewayId(String natGatewayId)
The ID of the NAT gateway.
- Parameters:
natGatewayId
- The ID of the NAT gateway.- 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 DeleteNatGatewayResult clone()
-
-