Class: Aws::EC2::Types::PrivateIpAddressSpecification

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

{
  primary: false,
  private_ip_address: "String",
}

Describes a secondary private IPv4 address for a network interface.

Instance Attribute Summary collapse

Instance Attribute Details

#primaryBoolean

Indicates whether the private IPv4 address is the primary private IPv4 address. Only one IPv4 address can be designated as primary.

Returns:

  • (Boolean)


27970
27971
27972
27973
27974
# File 'lib/aws-sdk-ec2/types.rb', line 27970

class PrivateIpAddressSpecification < Struct.new(
  :primary,
  :private_ip_address)
  include Aws::Structure
end

#private_ip_addressString

The private IPv4 addresses.

Returns:

  • (String)


27970
27971
27972
27973
27974
# File 'lib/aws-sdk-ec2/types.rb', line 27970

class PrivateIpAddressSpecification < Struct.new(
  :primary,
  :private_ip_address)
  include Aws::Structure
end