Class: Aws::EC2::Types::UnassignIpv6AddressesRequest

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

{
  ipv_6_addresses: ["String"], # required
  network_interface_id: "String", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#ipv_6_addressesArray<String>

The IPv6 addresses to unassign from the network interface.

Returns:

  • (Array<String>)


36443
36444
36445
36446
36447
# File 'lib/aws-sdk-ec2/types.rb', line 36443

class UnassignIpv6AddressesRequest < Struct.new(
  :ipv_6_addresses,
  :network_interface_id)
  include Aws::Structure
end

#network_interface_idString

The ID of the network interface.

Returns:

  • (String)


36443
36444
36445
36446
36447
# File 'lib/aws-sdk-ec2/types.rb', line 36443

class UnassignIpv6AddressesRequest < Struct.new(
  :ipv_6_addresses,
  :network_interface_id)
  include Aws::Structure
end