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",
  availability_zone_id: "String",
  cidr_block: "String", # required
  ipv_6_cidr_block: "String",
  vpc_id: "String", # required
  dry_run: false,
}

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)


6390
6391
6392
6393
6394
6395
6396
6397
6398
# File 'lib/aws-sdk-ec2/types.rb', line 6390

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

#availability_zone_idString

The AZ ID of the subnet.

Returns:

  • (String)


6390
6391
6392
6393
6394
6395
6396
6397
6398
# File 'lib/aws-sdk-ec2/types.rb', line 6390

class CreateSubnetRequest < Struct.new(
  :availability_zone,
  :availability_zone_id,
  :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)


6390
6391
6392
6393
6394
6395
6396
6397
6398
# File 'lib/aws-sdk-ec2/types.rb', line 6390

class CreateSubnetRequest < Struct.new(
  :availability_zone,
  :availability_zone_id,
  :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)


6390
6391
6392
6393
6394
6395
6396
6397
6398
# File 'lib/aws-sdk-ec2/types.rb', line 6390

class CreateSubnetRequest < Struct.new(
  :availability_zone,
  :availability_zone_id,
  :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)


6390
6391
6392
6393
6394
6395
6396
6397
6398
# File 'lib/aws-sdk-ec2/types.rb', line 6390

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

#vpc_idString

The ID of the VPC.

Returns:

  • (String)


6390
6391
6392
6393
6394
6395
6396
6397
6398
# File 'lib/aws-sdk-ec2/types.rb', line 6390

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