Class: Aws::Batch::Types::NodeDetails

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-batch/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

Instance Attribute Details

#is_main_nodeBoolean

Specifies whether the current node is the main node for a multi-node parallel job.

Returns:

  • (Boolean)


5880
5881
5882
5883
5884
5885
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 5880

class NodeDetails < Struct.new(
  :node_index,
  :is_main_node)
  SENSITIVE = []
  include Aws::Structure
end

#node_indexInteger

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.

Returns:

  • (Integer)


5880
5881
5882
5883
5884
5885
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 5880

class NodeDetails < Struct.new(
  :node_index,
  :is_main_node)
  SENSITIVE = []
  include Aws::Structure
end