interface ParallelismConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnPipelinePropsMixin.ParallelismConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnPipelinePropsMixin_ParallelismConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnPipelinePropsMixin.ParallelismConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnPipelinePropsMixin.ParallelismConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnPipelinePropsMixin » ParallelismConfigurationProperty |
Configuration that controls the parallelism of the pipeline.
By default, the parallelism configuration specified applies to all executions of the pipeline unless overridden.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const parallelismConfigurationProperty: sagemaker_mixins.CfnPipelinePropsMixin.ParallelismConfigurationProperty = {
maxParallelExecutionSteps: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max | number | The max number of steps that can be executed in parallel. |
maxParallelExecutionSteps?
Type:
number
(optional)
The max number of steps that can be executed in parallel.

.NET
Go
Java
Python
TypeScript