Class CfnPipelinePropsMixin.ParallelismConfigurationProperty
Configuration that controls the parallelism of the pipeline.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnPipelinePropsMixin.ParallelismConfigurationProperty : CfnPipelinePropsMixin.IParallelismConfigurationProperty
Syntax (vb)
Public Class CfnPipelinePropsMixin.ParallelismConfigurationProperty Implements CfnPipelinePropsMixin.IParallelismConfigurationProperty
Remarks
By default, the parallelism configuration specified applies to all executions of the pipeline unless overridden.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins;
var parallelismConfigurationProperty = new ParallelismConfigurationProperty {
MaxParallelExecutionSteps = 123
};
Synopsis
Constructors
| ParallelismConfigurationProperty() | Configuration that controls the parallelism of the pipeline. |
Properties
| MaxParallelExecutionSteps | The max number of steps that can be executed in parallel. |
Constructors
ParallelismConfigurationProperty()
Configuration that controls the parallelism of the pipeline.
public ParallelismConfigurationProperty()
Remarks
By default, the parallelism configuration specified applies to all executions of the pipeline unless overridden.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins;
var parallelismConfigurationProperty = new ParallelismConfigurationProperty {
MaxParallelExecutionSteps = 123
};
Properties
MaxParallelExecutionSteps
The max number of steps that can be executed in parallel.
public double? MaxParallelExecutionSteps { get; set; }