Class: Aws::Batch::Types::NodeDetails
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Batch::Types::NodeDetails
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-batch/types.rb
 
Overview
An object that represents the details of a multi-node parallel job node.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #is_main_node  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies whether the current node is the main node for a multi-node parallel job.
 - 
  
    
      #node_index  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The node index for the node.
 
Instance Attribute Details
#is_main_node ⇒ Boolean
Specifies whether the current node is the main node for a multi-node parallel job.
      6056 6057 6058 6059 6060 6061  | 
    
      # File 'lib/aws-sdk-batch/types.rb', line 6056 class NodeDetails < Struct.new( :node_index, :is_main_node) SENSITIVE = [] include Aws::Structure end  | 
  
#node_index ⇒ Integer
The node index for the node. Node index numbering starts at zero. This index is also available on the node with the ‘AWS_BATCH_JOB_NODE_INDEX` environment variable.
      6056 6057 6058 6059 6060 6061  | 
    
      # File 'lib/aws-sdk-batch/types.rb', line 6056 class NodeDetails < Struct.new( :node_index, :is_main_node) SENSITIVE = [] include Aws::Structure end  |