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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPipeline.ParallelismConfigurationProperty
static final class
An implementation forCfnPipeline.ParallelismConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The max number of steps that can be executed in parallel.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMaxParallelExecutionSteps
The max number of steps that can be executed in parallel. -
builder
-