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)


28198
28199
28200
28201
28202
# File 'lib/aws-sdk-ec2/types.rb', line 28198

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

#private_ip_addressString

The private IPv4 addresses.

Returns:

  • (String)


28198
28199
28200
28201
28202
# File 'lib/aws-sdk-ec2/types.rb', line 28198

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