ec2_create_subnet: Creates a subnet in the specified VPC

View source: R/ec2_operations.R

ec2_create_subnetR Documentation

Creates a subnet in the specified VPC

Description

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,
  DryRun = NULL,
  Ipv6Native = NULL
)

Arguments

TagSpecifications

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 Local Zones locations.

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 specify ⁠100.68.0.18/18⁠, we modify it to ⁠100.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. The subnet size must use a /64 prefix length.

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.

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 is UnauthorizedOperation.

Ipv6Native

Indicates whether to create an IPv6 only subnet.


paws.compute documentation built on Sept. 12, 2023, 1:28 a.m.