Class: Aws::EC2::Types::UnassignPrivateIpAddressesRequest

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

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

Contains the parameters for UnassignPrivateIpAddresses.

Instance Attribute Summary collapse

Instance Attribute Details

#network_interface_idString

The ID of the network interface.

Returns:

  • (String)


36488
36489
36490
36491
36492
# File 'lib/aws-sdk-ec2/types.rb', line 36488

class UnassignPrivateIpAddressesRequest < Struct.new(
  :network_interface_id,
  :private_ip_addresses)
  include Aws::Structure
end

#private_ip_addressesArray<String>

The secondary private IP addresses to unassign from the network interface. You can specify this option multiple times to unassign more than one IP address.

Returns:

  • (Array<String>)


36488
36489
36490
36491
36492
# File 'lib/aws-sdk-ec2/types.rb', line 36488

class UnassignPrivateIpAddressesRequest < Struct.new(
  :network_interface_id,
  :private_ip_addresses)
  include Aws::Structure
end