Class: Aws::EC2::Types::CreateSubnetRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Note:

When making an API call, you may pass CreateSubnetRequest data as a hash:

{
  availability_zone: "String",
  cidr_block: "String", # required
  ipv_6_cidr_block: "String",
  vpc_id: "String", # required
  dry_run: false,
}

Contains the parameters for CreateSubnet.

Instance Attribute Summary collapse

Instance Attribute Details

#availability_zoneString

The Availability Zone for the subnet.

Default: AWS selects one for you. If you create more than one subnet in your VPC, we may not necessarily select a different zone for each subnet.

Returns:

  • (String)


4600
4601
4602
4603
4604
4605
4606
4607
# File 'lib/aws-sdk-ec2/types.rb', line 4600

class CreateSubnetRequest < Struct.new(
  :availability_zone,
  :cidr_block,
  :ipv_6_cidr_block,
  :vpc_id,
  :dry_run)
  include Aws::Structure
end

#cidr_blockString

The IPv4 network range for the subnet, in CIDR notation. For example, ‘10.0.0.0/24`.

Returns:

  • (String)


4600
4601
4602
4603
4604
4605
4606
4607
# File 'lib/aws-sdk-ec2/types.rb', line 4600

class CreateSubnetRequest < Struct.new(
  :availability_zone,
  :cidr_block,
  :ipv_6_cidr_block,
  :vpc_id,
  :dry_run)
  include Aws::Structure
end

#dry_runBoolean

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`.

Returns:

  • (Boolean)


4600
4601
4602
4603
4604
4605
4606
4607
# File 'lib/aws-sdk-ec2/types.rb', line 4600

class CreateSubnetRequest < Struct.new(
  :availability_zone,
  :cidr_block,
  :ipv_6_cidr_block,
  :vpc_id,
  :dry_run)
  include Aws::Structure
end

#ipv_6_cidr_blockString

The IPv6 network range for the subnet, in CIDR notation. The subnet size must use a /64 prefix length.

Returns:

  • (String)


4600
4601
4602
4603
4604
4605
4606
4607
# File 'lib/aws-sdk-ec2/types.rb', line 4600

class CreateSubnetRequest < Struct.new(
  :availability_zone,
  :cidr_block,
  :ipv_6_cidr_block,
  :vpc_id,
  :dry_run)
  include Aws::Structure
end

#vpc_idString

The ID of the VPC.

Returns:

  • (String)


4600
4601
4602
4603
4604
4605
4606
4607
# File 'lib/aws-sdk-ec2/types.rb', line 4600

class CreateSubnetRequest < Struct.new(
  :availability_zone,
  :cidr_block,
  :ipv_6_cidr_block,
  :vpc_id,
  :dry_run)
  include Aws::Structure
end