Creates a subnet in the specified VPC. For an IPv4 only subnet, specify an IPv4 CIDR block. If the VPC has an IPv6 CIDR block, you can create an IPv6 only subnet or a dual stack subnet instead. For an IPv6 only subnet, specify an IPv6 CIDR block. For a dual stack subnet, specify both an IPv4 CIDR block and an IPv6 CIDR block.
See https://www.paws-r-sdk.com/docs/ec2_create_subnet/ for full documentation.
Usage
ec2_create_subnet(
TagSpecifications = NULL,
AvailabilityZone = NULL,
AvailabilityZoneId = NULL,
CidrBlock = NULL,
Ipv6CidrBlock = NULL,
OutpostArn = NULL,
VpcId,
Ipv6Native = NULL,
Ipv4IpamPoolId = NULL,
Ipv4NetmaskLength = NULL,
Ipv6IpamPoolId = NULL,
Ipv6NetmaskLength = NULL,
DryRun = NULL
)Arguments
The tags to assign to the subnet.
- AvailabilityZone
The Availability Zone or Local Zone for the subnet.
Default: Amazon Web Services selects one for you. If you create more than one subnet in your VPC, we do not necessarily select a different zone for each subnet.
To create a subnet in a Local Zone, set this value to the Local Zone ID, for example
us-west-2-lax-1a. For information about the Regions that support Local Zones, see Available Local Zones.To create a subnet in an Outpost, set this value to the Availability Zone for the Outpost and specify the Outpost ARN.
- AvailabilityZoneId
The AZ ID or the Local Zone ID of the subnet.
- CidrBlock
The IPv4 network range for the subnet, in CIDR notation. For example,
10.0.0.0/24. We modify the specified CIDR block to its canonical form; for example, if you specify100.68.0.18/18, we modify it to100.68.0.0/18.This parameter is not supported for an IPv6 only subnet.
- Ipv6CidrBlock
The IPv6 network range for the subnet, in CIDR notation. This parameter is required for an IPv6 only subnet.
- OutpostArn
The Amazon Resource Name (ARN) of the Outpost. If you specify an Outpost ARN, you must also specify the Availability Zone of the Outpost subnet.
- VpcId
[required] The ID of the VPC.
- Ipv6Native
Indicates whether to create an IPv6 only subnet.
- Ipv4IpamPoolId
An IPv4 IPAM pool ID for the subnet.
- Ipv4NetmaskLength
An IPv4 netmask length for the subnet.
- Ipv6IpamPoolId
An IPv6 IPAM pool ID for the subnet.
- Ipv6NetmaskLength
An IPv6 netmask length for the subnet.
- 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
DryRunOperation. Otherwise, it isUnauthorizedOperation.