Class: Aws::EC2::Types::NetworkInterfacePrivateIpAddress
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::NetworkInterfacePrivateIpAddress
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
Describes the private IPv4 address of a network interface.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #association  ⇒ Types::NetworkInterfaceAssociation 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The association information for an Elastic IP address (IPv4) associated with the network interface.
 - 
  
    
      #primary  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether this IPv4 address is the primary private IPv4 address of the network interface.
 - 
  
    
      #private_dns_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The private DNS name.
 - 
  
    
      #private_ip_address  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The private IPv4 address.
 
Instance Attribute Details
#association ⇒ Types::NetworkInterfaceAssociation
The association information for an Elastic IP address (IPv4) associated with the network interface.
      56742 56743 56744 56745 56746 56747 56748 56749  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 56742 class NetworkInterfacePrivateIpAddress < Struct.new( :association, :primary, :private_dns_name, :private_ip_address) SENSITIVE = [] include Aws::Structure end  | 
  
#primary ⇒ Boolean
Indicates whether this IPv4 address is the primary private IPv4 address of the network interface.
      56742 56743 56744 56745 56746 56747 56748 56749  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 56742 class NetworkInterfacePrivateIpAddress < Struct.new( :association, :primary, :private_dns_name, :private_ip_address) SENSITIVE = [] include Aws::Structure end  | 
  
#private_dns_name ⇒ String
The private DNS name.
      56742 56743 56744 56745 56746 56747 56748 56749  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 56742 class NetworkInterfacePrivateIpAddress < Struct.new( :association, :primary, :private_dns_name, :private_ip_address) SENSITIVE = [] include Aws::Structure end  | 
  
#private_ip_address ⇒ String
The private IPv4 address.
      56742 56743 56744 56745 56746 56747 56748 56749  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 56742 class NetworkInterfacePrivateIpAddress < Struct.new( :association, :primary, :private_dns_name, :private_ip_address) SENSITIVE = [] include Aws::Structure end  |