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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb

Overview

Describes a secondary private IPv4 address for a network interface.

Constant Summary collapse

SENSITIVE =
[]

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)


54179
54180
54181
54182
54183
54184
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 54179

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

#private_ip_addressString

The private IPv4 address.

Returns:

  • (String)


54179
54180
54181
54182
54183
54184
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 54179

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