Class: Aws::Batch::Types::NodeProperties
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Batch::Types::NodeProperties
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-batch/types.rb
 
Overview
An object that represents the node properties of a multi-node parallel job.
<note markdown=“1”> Node properties can’t be specified for Amazon EKS based job definitions.
</note>
  Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #main_node  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the node index for the main node of a multi-node parallel job.
 - 
  
    
      #node_range_properties  ⇒ Array<Types::NodeRangeProperty> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of node ranges and their properties that are associated with a multi-node parallel job.
 - 
  
    
      #num_nodes  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The number of nodes that are associated with a multi-node parallel job.
 
Instance Attribute Details
#main_node ⇒ Integer
Specifies the node index for the main node of a multi-node parallel job. This node index value must be fewer than the number of nodes.
      6131 6132 6133 6134 6135 6136 6137  | 
    
      # File 'lib/aws-sdk-batch/types.rb', line 6131 class NodeProperties < Struct.new( :num_nodes, :main_node, :node_range_properties) SENSITIVE = [] include Aws::Structure end  | 
  
#node_range_properties ⇒ Array<Types::NodeRangeProperty>
A list of node ranges and their properties that are associated with a multi-node parallel job.
      6131 6132 6133 6134 6135 6136 6137  | 
    
      # File 'lib/aws-sdk-batch/types.rb', line 6131 class NodeProperties < Struct.new( :num_nodes, :main_node, :node_range_properties) SENSITIVE = [] include Aws::Structure end  | 
  
#num_nodes ⇒ Integer
The number of nodes that are associated with a multi-node parallel job.
      6131 6132 6133 6134 6135 6136 6137  | 
    
      # File 'lib/aws-sdk-batch/types.rb', line 6131 class NodeProperties < Struct.new( :num_nodes, :main_node, :node_range_properties) SENSITIVE = [] include Aws::Structure end  |