Class: Aws::Drs::Types::NetworkInterface
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Drs::Types::NetworkInterface
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-drs/types.rb
 
Overview
Network interface.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #ips  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Network interface IPs.
 - 
  
    
      #is_primary  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Whether this is the primary network interface.
 - 
  
    
      #mac_address  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The MAC address of the network interface.
 
Instance Attribute Details
#ips ⇒ Array<String>
Network interface IPs.
      1982 1983 1984 1985 1986 1987 1988  | 
    
      # File 'lib/aws-sdk-drs/types.rb', line 1982 class NetworkInterface < Struct.new( :ips, :is_primary, :mac_address) SENSITIVE = [] include Aws::Structure end  | 
  
#is_primary ⇒ Boolean
Whether this is the primary network interface.
      1982 1983 1984 1985 1986 1987 1988  | 
    
      # File 'lib/aws-sdk-drs/types.rb', line 1982 class NetworkInterface < Struct.new( :ips, :is_primary, :mac_address) SENSITIVE = [] include Aws::Structure end  | 
  
#mac_address ⇒ String
The MAC address of the network interface.
      1982 1983 1984 1985 1986 1987 1988  | 
    
      # File 'lib/aws-sdk-drs/types.rb', line 1982 class NetworkInterface < Struct.new( :ips, :is_primary, :mac_address) SENSITIVE = [] include Aws::Structure end  |