You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::EC2::NatGateway
- Inherits:
-
Resources::Resource
- Object
- Resources::Resource
- Aws::EC2::NatGateway
- Defined in:
- (unknown)
Instance Attribute Summary collapse
-
#create_time ⇒ Time
readonly
The date and time the NAT gateway was created.
-
#delete_time ⇒ Time
readonly
The date and time the NAT gateway was deleted, if applicable.
-
#failure_code ⇒ String
readonly
If the NAT gateway could not be created, specifies the error code for the failure.
-
#failure_message ⇒ String
readonly
If the NAT gateway could not be created, specifies the error message for the failure, that corresponds to the error code.
-
#id ⇒ String
readonly
-
#nat_gateway_addresses ⇒ Array<Types::NatGatewayAddress>
readonly
Information about the IP addresses and network interface associated with the NAT gateway.
-
#nat_gateway_id ⇒ String
readonly
The ID of the NAT gateway.
-
#provisioned_bandwidth ⇒ Types::ProvisionedBandwidth
readonly
Reserved.
-
#state ⇒ String
readonly
The state of the NAT gateway.
-
#subnet_id ⇒ String
readonly
The ID of the subnet in which the NAT gateway is located.
-
#tags ⇒ Array<Types::Tag>
readonly
The tags for the NAT gateway.
-
#vpc_id ⇒ String
readonly
The ID of the VPC in which the NAT gateway is located.
Attributes inherited from Resources::Resource
Instance Method Summary collapse
-
#address ⇒ VpcAddress?
-
#create_tags(options = {}) ⇒ Array<Tag>
-
#delete(options = {}) ⇒ Types::DeleteNatGatewayResult
Deletes the specified NAT gateway.
-
#delete_tags(options = {}) ⇒ Array<Tag>
-
#initialize ⇒ Object
constructor
-
#subnet ⇒ Subnet?
Methods inherited from Resources::Resource
add_data_attribute, add_identifier, #data, data_attributes, #data_loaded?, identifiers, #load, #wait_until
Methods included from Resources::OperationMethods
#add_batch_operation, #add_operation, #batch_operation, #batch_operation_names, #batch_operations, #operation, #operation_names, #operations
Constructor Details
#initialize(id, options = {}) ⇒ Object #initialize(options = {}) ⇒ Object
Instance Attribute Details
#create_time ⇒ Time (readonly)
The date and time the NAT gateway was created.
#delete_time ⇒ Time (readonly)
The date and time the NAT gateway was deleted, if applicable.
#failure_code ⇒ String (readonly)
If the NAT gateway could not be created, specifies the error code for
the failure. (InsufficientFreeAddressesInSubnet
|
Gateway.NotAttached
| InvalidAllocationID.NotFound
|
Resource.AlreadyAssociated
| InternalError
|
InvalidSubnetID.NotFound
)
#failure_message ⇒ String (readonly)
If the NAT gateway could not be created, specifies the error message for the failure, that corresponds to the error code.
For InsufficientFreeAddressesInSubnet: \"Subnet has insufficient free addresses to create this NAT gateway\"
For Gateway.NotAttached: \"Network vpc-xxxxxxxx has no Internet gateway attached\"
For InvalidAllocationID.NotFound: \"Elastic IP address eipalloc-xxxxxxxx could not be associated with this NAT gateway\"
For Resource.AlreadyAssociated: \"Elastic IP address eipalloc-xxxxxxxx is already associated\"
For InternalError: \"Network interface eni-xxxxxxxx, created and used internally by this NAT gateway is in an invalid state. Please try again.\"
For InvalidSubnetID.NotFound: \"The specified subnet subnet-xxxxxxxx does not exist or could not be found.\"
#id ⇒ String (readonly)
#nat_gateway_addresses ⇒ Array<Types::NatGatewayAddress> (readonly)
Information about the IP addresses and network interface associated with the NAT gateway.
#nat_gateway_id ⇒ String (readonly)
The ID of the NAT gateway.
#provisioned_bandwidth ⇒ Types::ProvisionedBandwidth (readonly)
Reserved. If you need to sustain traffic greater than the documented limits, contact us through the Support Center.
#state ⇒ String (readonly)
The state of the NAT gateway.
pending
: The NAT gateway is being created and is not ready to process traffic.failed
: The NAT gateway could not be created. Check thefailureCode
andfailureMessage
fields for the reason.available
: The NAT gateway is able to process traffic. This status remains until you delete the NAT gateway, and does not indicate the health of the NAT gateway.deleting
: The NAT gateway is in the process of being terminated and may still be processing traffic.deleted
: The NAT gateway has been terminated and is no longer processing traffic.Possible values:
- pending
- failed
- available
- deleting
- deleted
#subnet_id ⇒ String (readonly)
The ID of the subnet in which the NAT gateway is located.
#tags ⇒ Array<Types::Tag> (readonly)
The tags for the NAT gateway.
#vpc_id ⇒ String (readonly)
The ID of the VPC in which the NAT gateway is located.
Instance Method Details
#address ⇒ VpcAddress?
#create_tags(options = {}) ⇒ Array<Tag>
#delete(options = {}) ⇒ Types::DeleteNatGatewayResult
Deletes the specified NAT gateway. Deleting a NAT gateway disassociates its Elastic IP address, but does not release the address from your account. Deleting a NAT gateway does not delete any NAT gateway routes in your route tables.