Class: Aws::Batch::Types::NodeProperties
- Inherits:
-
Struct
- Object
- Struct
- Aws::Batch::Types::NodeProperties
- Defined in:
- gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb
Overview
An object that represents the node properties of a multi-node parallel job.
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.
6289 6290 6291 6292 6293 6294 6295 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 6289 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.
6289 6290 6291 6292 6293 6294 6295 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 6289 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.
6289 6290 6291 6292 6293 6294 6295 |
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 6289 class NodeProperties < Struct.new( :num_nodes, :main_node, :node_range_properties) SENSITIVE = [] include Aws::Structure end |