Associate Vpc Cidr Block
ec2_associate_vpc_cidr_block | R Documentation |
Associates a CIDR block with your VPC¶
Description¶
Associates a CIDR block with your VPC. You can associate a secondary IPv4 CIDR block, an Amazon-provided IPv6 CIDR block, or an IPv6 CIDR block from an IPv6 address pool that you provisioned through bring your own IP addresses (BYOIP).
You must specify one of the following in the request: an IPv4 CIDR block, an IPv6 pool, or an Amazon-provided IPv6 CIDR block.
For more information about associating CIDR blocks with your VPC and applicable restrictions, see IP addressing for your VPCs and subnets in the Amazon VPC User Guide.
Usage¶
ec2_associate_vpc_cidr_block(CidrBlock, Ipv6CidrBlockNetworkBorderGroup,
Ipv6Pool, Ipv6CidrBlock, Ipv4IpamPoolId, Ipv4NetmaskLength,
Ipv6IpamPoolId, Ipv6NetmaskLength, VpcId, AmazonProvidedIpv6CidrBlock)
Arguments¶
CidrBlock |
An IPv4 CIDR block to associate with the VPC. |
Ipv6CidrBlockNetworkBorderGroup |
The name of the location from which we advertise the IPV6 CIDR block. Use this parameter to limit the CIDR block to this location. You must set You can have one IPv6 CIDR block association per network border group. |
Ipv6Pool |
The ID of an IPv6 address pool from which to allocate the IPv6 CIDR block. |
Ipv6CidrBlock |
An IPv6 CIDR block from the IPv6 address pool. You must also
specify To let Amazon choose the IPv6 CIDR block for you, omit this parameter. |
Ipv4IpamPoolId |
Associate a CIDR allocated from an IPv4 IPAM pool to a VPC. For more information about Amazon VPC IP Address Manager (IPAM), see What is IPAM? in the Amazon VPC IPAM User Guide. |
Ipv4NetmaskLength |
The netmask length of the IPv4 CIDR you would like to associate from an Amazon VPC IP Address Manager (IPAM) pool. For more information about IPAM, see What is IPAM? in the Amazon VPC IPAM User Guide. |
Ipv6IpamPoolId |
Associates a CIDR allocated from an IPv6 IPAM pool to a VPC. For more information about Amazon VPC IP Address Manager (IPAM), see What is IPAM? in the Amazon VPC IPAM User Guide. |
Ipv6NetmaskLength |
The netmask length of the IPv6 CIDR you would like to associate from an Amazon VPC IP Address Manager (IPAM) pool. For more information about IPAM, see What is IPAM? in the Amazon VPC IPAM User Guide. |
VpcId |
[required] The ID of the VPC. |
AmazonProvidedIpv6CidrBlock |
Requests an Amazon-provided IPv6 CIDR block with a /56 prefix length for the VPC. You cannot specify the range of IPv6 addresses or the size of the CIDR block. |
Value¶
A list with the following syntax:
list(
Ipv6CidrBlockAssociation = list(
AssociationId = "string",
Ipv6CidrBlock = "string",
Ipv6CidrBlockState = list(
State = "associating"|"associated"|"disassociating"|"disassociated"|"failing"|"failed",
StatusMessage = "string"
),
NetworkBorderGroup = "string",
Ipv6Pool = "string",
Ipv6AddressAttribute = "public"|"private",
IpSource = "amazon"|"byoip"|"none"
),
CidrBlockAssociation = list(
AssociationId = "string",
CidrBlock = "string",
CidrBlockState = list(
State = "associating"|"associated"|"disassociating"|"disassociated"|"failing"|"failed",
StatusMessage = "string"
)
),
VpcId = "string"
)
Request syntax¶
svc$associate_vpc_cidr_block(
CidrBlock = "string",
Ipv6CidrBlockNetworkBorderGroup = "string",
Ipv6Pool = "string",
Ipv6CidrBlock = "string",
Ipv4IpamPoolId = "string",
Ipv4NetmaskLength = 123,
Ipv6IpamPoolId = "string",
Ipv6NetmaskLength = 123,
VpcId = "string",
AmazonProvidedIpv6CidrBlock = TRUE|FALSE
)