Class: Aws::RoboMaker::Types::NetworkInterface
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::RoboMaker::Types::NetworkInterface
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-robomaker/types.rb
 
Overview
Describes a network interface.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #network_interface_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the network interface.
 - 
  
    
      #private_ip_address  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The IPv4 address of the network interface within the subnet.
 - 
  
    
      #public_ip_address  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The IPv4 public address of the network interface.
 
Instance Attribute Details
#network_interface_id ⇒ String
The ID of the network interface.
      3936 3937 3938 3939 3940 3941 3942  | 
    
      # File 'lib/aws-sdk-robomaker/types.rb', line 3936 class NetworkInterface < Struct.new( :network_interface_id, :private_ip_address, :public_ip_address) SENSITIVE = [] include Aws::Structure end  | 
  
#private_ip_address ⇒ String
The IPv4 address of the network interface within the subnet.
      3936 3937 3938 3939 3940 3941 3942  | 
    
      # File 'lib/aws-sdk-robomaker/types.rb', line 3936 class NetworkInterface < Struct.new( :network_interface_id, :private_ip_address, :public_ip_address) SENSITIVE = [] include Aws::Structure end  | 
  
#public_ip_address ⇒ String
The IPv4 public address of the network interface.
      3936 3937 3938 3939 3940 3941 3942  | 
    
      # File 'lib/aws-sdk-robomaker/types.rb', line 3936 class NetworkInterface < Struct.new( :network_interface_id, :private_ip_address, :public_ip_address) SENSITIVE = [] include Aws::Structure end  |