interface ParallelismConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnPipelinePropsMixin.ParallelismConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnPipelinePropsMixin_ParallelismConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnPipelinePropsMixin.ParallelismConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnPipelinePropsMixin.ParallelismConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » 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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const parallelismConfigurationProperty: sagemaker.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