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)


53982
53983
53984
53985
53986
53987
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 53982

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

#private_ip_addressString

The private IPv4 address.

Returns:

  • (String)


53982
53983
53984
53985
53986
53987
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 53982

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