Class: Aws::MediaLive::Types::NodeInterfaceMappingCreateRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::MediaLive::Types::NodeInterfaceMappingCreateRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-medialive/types.rb
 
Overview
Used in CreateNodeRequest.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #logical_interface_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specify one of the logicalInterfaceNames that you created in the Cluster that this node belongs to.
 - 
  
    
      #network_interface_mode  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The style of the network – NAT or BRIDGE.
 - 
  
    
      #physical_interface_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specify the physical name that corresponds to the logicalInterfaceName that you specified in this interface mapping.
 
Instance Attribute Details
#logical_interface_name ⇒ String
Specify one of the logicalInterfaceNames that you created in the Cluster that this node belongs to. For example, my-Inputs-Interface.
      19993 19994 19995 19996 19997 19998 19999  | 
    
      # File 'lib/aws-sdk-medialive/types.rb', line 19993 class NodeInterfaceMappingCreateRequest < Struct.new( :logical_interface_name, :network_interface_mode, :physical_interface_name) SENSITIVE = [] include Aws::Structure end  | 
  
#network_interface_mode ⇒ String
The style of the network – NAT or BRIDGE.
      19993 19994 19995 19996 19997 19998 19999  | 
    
      # File 'lib/aws-sdk-medialive/types.rb', line 19993 class NodeInterfaceMappingCreateRequest < Struct.new( :logical_interface_name, :network_interface_mode, :physical_interface_name) SENSITIVE = [] include Aws::Structure end  | 
  
#physical_interface_name ⇒ String
Specify the physical name that corresponds to the logicalInterfaceName that you specified in this interface mapping. For example, Eth1 or ENO1234EXAMPLE.
      19993 19994 19995 19996 19997 19998 19999  | 
    
      # File 'lib/aws-sdk-medialive/types.rb', line 19993 class NodeInterfaceMappingCreateRequest < Struct.new( :logical_interface_name, :network_interface_mode, :physical_interface_name) SENSITIVE = [] include Aws::Structure end  |