Interface NodePropertiesSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<NodePropertiesSummary.Builder,NodePropertiesSummary>,SdkBuilder<NodePropertiesSummary.Builder,NodePropertiesSummary>,SdkPojo
- Enclosing class:
- NodePropertiesSummary
public static interface NodePropertiesSummary.Builder extends SdkPojo, CopyableBuilder<NodePropertiesSummary.Builder,NodePropertiesSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NodePropertiesSummary.BuilderisMainNode(Boolean isMainNode)Specifies whether the current node is the main node for a multi-node parallel job.NodePropertiesSummary.BuildernodeIndex(Integer nodeIndex)The node index for the node.NodePropertiesSummary.BuildernumNodes(Integer numNodes)The number of nodes that are associated with a multi-node parallel job.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
isMainNode
NodePropertiesSummary.Builder isMainNode(Boolean isMainNode)
Specifies whether the current node is the main node for a multi-node parallel job.
- Parameters:
isMainNode- Specifies whether the current node is the main node for a multi-node parallel job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
numNodes
NodePropertiesSummary.Builder numNodes(Integer numNodes)
The number of nodes that are associated with a multi-node parallel job.
- Parameters:
numNodes- The number of nodes that are associated with a multi-node parallel job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
nodeIndex
NodePropertiesSummary.Builder nodeIndex(Integer nodeIndex)
The node index for the node. Node index numbering begins at zero. This index is also available on the node with the
AWS_BATCH_JOB_NODE_INDEXenvironment variable.- Parameters:
nodeIndex- The node index for the node. Node index numbering begins at zero. This index is also available on the node with theAWS_BATCH_JOB_NODE_INDEXenvironment variable.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-