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

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

Node properties can't be specified for Amazon EKS based job definitions.

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)


6033
6034
6035
6036
6037
6038
6039
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 6033

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:



6033
6034
6035
6036
6037
6038
6039
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 6033

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)


6033
6034
6035
6036
6037
6038
6039
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 6033

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