Interface CfnApplicationV2.ParallelismConfigurationProperty

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

@Stability(Stable) public static interface CfnApplicationV2.ParallelismConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Describes parameters for how a Flink-based Kinesis Data Analytics application executes multiple tasks simultaneously.

For more information about parallelism, see Parallel Execution in the Apache Flink Documentation .

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.kinesisanalytics.*;
 ParallelismConfigurationProperty parallelismConfigurationProperty = ParallelismConfigurationProperty.builder()
         .configurationType("configurationType")
         // the properties below are optional
         .autoScalingEnabled(false)
         .parallelism(123)
         .parallelismPerKpu(123)
         .build();
 

See Also: