Associate Nat Gateway Address
| ec2_associate_nat_gateway_address | R Documentation |
Associates Elastic IP addresses (EIPs) and private IPv4 addresses with a public NAT gateway¶
Description¶
Associates Elastic IP addresses (EIPs) and private IPv4 addresses with a public NAT gateway. For more information, see Work with NAT gateways in the Amazon VPC User Guide.
By default, you can associate up to 2 Elastic IP addresses per public NAT gateway. You can increase the limit by requesting a quota adjustment. For more information, see Elastic IP address quotas in the Amazon VPC User Guide.
When you associate an EIP or secondary EIPs with a public NAT gateway, the network border group of the EIPs must match the network border group of the Availability Zone (AZ) that the public NAT gateway is in. If it's not the same, the EIP will fail to associate. You can see the network border group for the subnet's AZ by viewing the details of the subnet. Similarly, you can view the network border group of an EIP by viewing the details of the EIP address. For more information about network border groups and EIPs, see Allocate an Elastic IP address in the Amazon VPC User Guide.
Usage¶
ec2_associate_nat_gateway_address(NatGatewayId, AllocationIds,
PrivateIpAddresses, DryRun, AvailabilityZone, AvailabilityZoneId)
Arguments¶
NatGatewayId |
[required] The ID of the NAT gateway. |
AllocationIds |
[required] The allocation IDs of EIPs that you want to associate with your NAT gateway. |
PrivateIpAddresses |
The private IPv4 addresses that you want to assign to the NAT gateway. |
DryRun |
Checks whether you have the required permissions for the action,
without actually making the request, and provides an error response. If
you have the required permissions, the error response is
|
AvailabilityZone |
For regional NAT gateways only: The Availability Zone where you want to associate an Elastic IP address (EIP). The regional NAT gateway uses a separate EIP in each AZ 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. |
AvailabilityZoneId |
For regional NAT gateways only: The ID of the Availability Zone where you want to associate an Elastic IP address (EIP). The regional NAT gateway uses a separate EIP in each AZ 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. |
Value¶
A list with the following syntax:
list(
NatGatewayId = "string",
NatGatewayAddresses = list(
list(
AllocationId = "string",
NetworkInterfaceId = "string",
PrivateIp = "string",
PublicIp = "string",
AssociationId = "string",
IsPrimary = TRUE|FALSE,
FailureMessage = "string",
Status = "assigning"|"unassigning"|"associating"|"disassociating"|"succeeded"|"failed",
AvailabilityZone = "string",
AvailabilityZoneId = "string"
)
)
)
Request syntax¶
svc$associate_nat_gateway_address(
NatGatewayId = "string",
AllocationIds = list(
"string"
),
PrivateIpAddresses = list(
"string"
),
DryRun = TRUE|FALSE,
AvailabilityZone = "string",
AvailabilityZoneId = "string"
)