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.
      58928 58929 58930 58931 58932 58933  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 58928 class PrivateIpAddressSpecification < Struct.new( :primary, :private_ip_address) SENSITIVE = [] include Aws::Structure end  | 
  
#private_ip_address ⇒ String
The private IPv4 address.
      58928 58929 58930 58931 58932 58933  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 58928 class PrivateIpAddressSpecification < Struct.new( :primary, :private_ip_address) SENSITIVE = [] include Aws::Structure end  |