interface IMultiNodeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Batch.IMultiNodeProps |
Java | software.amazon.awscdk.services.batch.IMultiNodeProps |
Python | aws_cdk.aws_batch.IMultiNodeProps |
TypeScript (source) | @aws-cdk/aws-batch » IMultiNodeProps |
Properties for specifying multi-node properties for compute resources.
Properties
| Name | Type | Description |
|---|---|---|
| count | number | The number of nodes associated with a multi-node parallel job. |
| main | number | Specifies the node index for the main node of a multi-node parallel job. |
| range | INode[] | A list of node ranges and their properties associated with a multi-node parallel job. |
count
Type:
number
The number of nodes associated with a multi-node parallel job.
mainNode
Type:
number
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.
rangeProps
Type:
INode[]
A list of node ranges and their properties associated with a multi-node parallel job.

.NET
Java
Python
TypeScript (