Class: Aws::Batch::Types::NodeProperties

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#main_nodeInteger

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.

Returns:

  • (Integer)


6152
6153
6154
6155
6156
6157
6158
# File 'lib/aws-sdk-batch/types.rb', line 6152

class NodeProperties < Struct.new(
  :num_nodes,
  :main_node,
  :node_range_properties)
  SENSITIVE = []
  include Aws::Structure
end

#node_range_propertiesArray<Types::NodeRangeProperty>

A list of node ranges and their properties that are associated with a multi-node parallel job.

Returns:



6152
6153
6154
6155
6156
6157
6158
# File 'lib/aws-sdk-batch/types.rb', line 6152

class NodeProperties < Struct.new(
  :num_nodes,
  :main_node,
  :node_range_properties)
  SENSITIVE = []
  include Aws::Structure
end

#num_nodesInteger

The number of nodes that are associated with a multi-node parallel job.

Returns:

  • (Integer)


6152
6153
6154
6155
6156
6157
6158
# File 'lib/aws-sdk-batch/types.rb', line 6152

class NodeProperties < Struct.new(
  :num_nodes,
  :main_node,
  :node_range_properties)
  SENSITIVE = []
  include Aws::Structure
end