Class: Aws::EC2::Types::AvailabilityZoneAddress
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::AvailabilityZoneAddress
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
For regional NAT gateways only: The configuration specifying which Elastic IP address (EIP) to use for handling outbound NAT traffic from a specific Availability Zone.
A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
For more information, see Regional NAT gateways for automatic multi-AZ expansion in the Amazon VPC User Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#allocation_ids ⇒ Array<String>
The allocation IDs of the Elastic IP addresses (EIPs) to be used for handling outbound NAT traffic in this specific Availability Zone.
-
#availability_zone ⇒ String
For regional NAT gateways only: The Availability Zone where this specific NAT gateway configuration will be active.
-
#availability_zone_id ⇒ String
For regional NAT gateways only: The ID of the Availability Zone where this specific NAT gateway configuration will be active.
Instance Attribute Details
#allocation_ids ⇒ Array<String>
The allocation IDs of the Elastic IP addresses (EIPs) to be used for handling outbound NAT traffic in this specific Availability Zone.
3936 3937 3938 3939 3940 3941 3942 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 3936 class AvailabilityZoneAddress < Struct.new( :availability_zone, :availability_zone_id, :allocation_ids) SENSITIVE = [] include Aws::Structure end |
#availability_zone ⇒ String
For regional NAT gateways only: The Availability Zone where this specific NAT gateway configuration will be active. Each AZ in a regional NAT gateway has its own configuration to handle outbound NAT traffic from that AZ.
A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
3936 3937 3938 3939 3940 3941 3942 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 3936 class AvailabilityZoneAddress < Struct.new( :availability_zone, :availability_zone_id, :allocation_ids) SENSITIVE = [] include Aws::Structure end |
#availability_zone_id ⇒ String
For regional NAT gateways only: The ID of the Availability Zone where this specific NAT gateway configuration will be active. Each AZ in a regional NAT gateway has its own configuration to handle outbound NAT traffic from that AZ. Use this instead of AvailabilityZone for consistent identification of AZs across Amazon Web Services Regions.
A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
3936 3937 3938 3939 3940 3941 3942 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 3936 class AvailabilityZoneAddress < Struct.new( :availability_zone, :availability_zone_id, :allocation_ids) SENSITIVE = [] include Aws::Structure end |