public static interface NodeProperties.Builder extends SdkPojo, CopyableBuilder<NodeProperties.Builder,NodeProperties>
Modifier and Type | Method and Description |
---|---|
NodeProperties.Builder |
mainNode(Integer mainNode)
Specifies the node index for the main node of a multi-node parallel job.
|
NodeProperties.Builder |
nodeRangeProperties(Collection<NodeRangeProperty> nodeRangeProperties)
A list of node ranges and their properties associated with a multi-node parallel job.
|
NodeProperties.Builder |
nodeRangeProperties(Consumer<NodeRangeProperty.Builder>... nodeRangeProperties)
A list of node ranges and their properties associated with a multi-node parallel job.
|
NodeProperties.Builder |
nodeRangeProperties(NodeRangeProperty... nodeRangeProperties)
A list of node ranges and their properties associated with a multi-node parallel job.
|
NodeProperties.Builder |
numNodes(Integer numNodes)
The number of nodes associated with a multi-node parallel job.
|
copy
applyMutation, build
NodeProperties.Builder numNodes(Integer numNodes)
The number of nodes associated with a multi-node parallel job.
numNodes
- The number of nodes associated with a multi-node parallel job.NodeProperties.Builder mainNode(Integer mainNode)
Specifies the node index for the main node of a multi-node parallel job.
mainNode
- Specifies the node index for the main node of a multi-node parallel job.NodeProperties.Builder nodeRangeProperties(Collection<NodeRangeProperty> nodeRangeProperties)
A list of node ranges and their properties associated with a multi-node parallel job.
nodeRangeProperties
- A list of node ranges and their properties associated with a multi-node parallel job.NodeProperties.Builder nodeRangeProperties(NodeRangeProperty... nodeRangeProperties)
A list of node ranges and their properties associated with a multi-node parallel job.
nodeRangeProperties
- A list of node ranges and their properties associated with a multi-node parallel job.NodeProperties.Builder nodeRangeProperties(Consumer<NodeRangeProperty.Builder>... nodeRangeProperties)
A list of node ranges and their properties associated with a multi-node parallel job.
This is a convenience that creates an instance of theList.Builder
avoiding the
need to create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately
and its result is passed to #nodeRangeProperties(List)
.nodeRangeProperties
- a consumer that will call methods on List.Builder
#nodeRangeProperties(List)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.