Interface CfnPipeline.ParallelismConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPipeline.ParallelismConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnPipeline

@Stability(Stable) public static interface CfnPipeline.ParallelismConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.sagemaker.*;
 ParallelismConfigurationProperty parallelismConfigurationProperty = ParallelismConfigurationProperty.builder()
         .maxParallelExecutionSteps(123)
         .build();