Class: Aws::EC2::Types::ModifySubnetAttributeRequest

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 ModifySubnetAttributeRequest data as a hash:

{
  assign_ipv_6_address_on_creation: {
    value: false,
  },
  map_public_ip_on_launch: {
    value: false,
  },
  subnet_id: "String", # required
}

Contains the parameters for ModifySubnetAttribute.

Instance Attribute Summary collapse

Instance Attribute Details

#assign_ipv_6_address_on_creationTypes::AttributeBooleanValue

Specify ‘true` to indicate that network interfaces created in the specified subnet should be assigned an IPv6 address. This includes a network interface that’s created when launching an instance into the subnet (the instance therefore receives an IPv6 address).

If you enable the IPv6 addressing feature for your subnet, your network interface or instance only receives an IPv6 address if it’s created using version ‘2016-11-15` or later of the Amazon EC2 API.



16791
16792
16793
16794
16795
16796
# File 'lib/aws-sdk-ec2/types.rb', line 16791

class ModifySubnetAttributeRequest < Struct.new(
  :assign_ipv_6_address_on_creation,
  :map_public_ip_on_launch,
  :subnet_id)
  include Aws::Structure
end

#map_public_ip_on_launchTypes::AttributeBooleanValue

Specify ‘true` to indicate that network interfaces created in the specified subnet should be assigned a public IPv4 address. This includes a network interface that’s created when launching an instance into the subnet (the instance therefore receives a public IPv4 address).



16791
16792
16793
16794
16795
16796
# File 'lib/aws-sdk-ec2/types.rb', line 16791

class ModifySubnetAttributeRequest < Struct.new(
  :assign_ipv_6_address_on_creation,
  :map_public_ip_on_launch,
  :subnet_id)
  include Aws::Structure
end

#subnet_idString

The ID of the subnet.

Returns:

  • (String)


16791
16792
16793
16794
16795
16796
# File 'lib/aws-sdk-ec2/types.rb', line 16791

class ModifySubnetAttributeRequest < Struct.new(
  :assign_ipv_6_address_on_creation,
  :map_public_ip_on_launch,
  :subnet_id)
  include Aws::Structure
end