Class: Aws::EC2::Types::PrivateIpAddressSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::PrivateIpAddressSpecification
- Includes:
- Structure
- Defined in:
- 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
-
#primary ⇒ Boolean
Indicates whether the private IPv4 address is the primary private IPv4 address.
-
#private_ip_address ⇒ String
The private IPv4 address.
Instance Attribute Details
#primary ⇒ Boolean
Indicates whether the private IPv4 address is the primary private IPv4 address. Only one IPv4 address can be designated as primary.
58163 58164 58165 58166 58167 58168 |
# File 'lib/aws-sdk-ec2/types.rb', line 58163 class PrivateIpAddressSpecification < Struct.new( :primary, :private_ip_address) SENSITIVE = [] include Aws::Structure end |
#private_ip_address ⇒ String
The private IPv4 address.
58163 58164 58165 58166 58167 58168 |
# File 'lib/aws-sdk-ec2/types.rb', line 58163 class PrivateIpAddressSpecification < Struct.new( :primary, :private_ip_address) SENSITIVE = [] include Aws::Structure end |