Class: Aws::EC2::Types::InstancePrivateIpAddress
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::InstancePrivateIpAddress
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
Describes a private IPv4 address.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #association  ⇒ Types::InstanceNetworkInterfaceAssociation 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The association information for an Elastic IP address for the network interface.
 - 
  
    
      #primary  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether this IPv4 address is the primary private IP address of the network interface.
 - 
  
    
      #private_dns_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The private IPv4 DNS name.
 - 
  
    
      #private_ip_address  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The private IPv4 address of the network interface.
 
Instance Attribute Details
#association ⇒ Types::InstanceNetworkInterfaceAssociation
The association information for an Elastic IP address for the network interface.
      44084 44085 44086 44087 44088 44089 44090 44091  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 44084 class InstancePrivateIpAddress < 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 IP address of the network interface.
      44084 44085 44086 44087 44088 44089 44090 44091  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 44084 class InstancePrivateIpAddress < Struct.new( :association, :primary, :private_dns_name, :private_ip_address) SENSITIVE = [] include Aws::Structure end  | 
  
#private_dns_name ⇒ String
The private IPv4 DNS name.
      44084 44085 44086 44087 44088 44089 44090 44091  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 44084 class InstancePrivateIpAddress < Struct.new( :association, :primary, :private_dns_name, :private_ip_address) SENSITIVE = [] include Aws::Structure end  | 
  
#private_ip_address ⇒ String
The private IPv4 address of the network interface.
      44084 44085 44086 44087 44088 44089 44090 44091  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 44084 class InstancePrivateIpAddress < Struct.new( :association, :primary, :private_dns_name, :private_ip_address) SENSITIVE = [] include Aws::Structure end  |