Interface CfnNatGateway.AvailabilityZoneAddressProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnNatGateway.AvailabilityZoneAddressProperty.Jsii$Proxy
Enclosing class:
CfnNatGateway

@Stability(Stable) public static interface CfnNatGateway.AvailabilityZoneAddressProperty extends software.amazon.jsii.JsiiSerializable
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 .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.ec2.*;
 AvailabilityZoneAddressProperty availabilityZoneAddressProperty = AvailabilityZoneAddressProperty.builder()
         .allocationIds(List.of("allocationIds"))
         // the properties below are optional
         .availabilityZone("availabilityZone")
         .availabilityZoneId("availabilityZoneId")
         .build();
 

See Also: