Interface ParallelismConfigurationDescription.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ParallelismConfigurationDescription.Builder,ParallelismConfigurationDescription>,SdkBuilder<ParallelismConfigurationDescription.Builder,ParallelismConfigurationDescription>,SdkPojo
- Enclosing class:
- ParallelismConfigurationDescription
public static interface ParallelismConfigurationDescription.Builder extends SdkPojo, CopyableBuilder<ParallelismConfigurationDescription.Builder,ParallelismConfigurationDescription>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ParallelismConfigurationDescription.BuilderautoScalingEnabled(Boolean autoScalingEnabled)Describes whether the Managed Service for Apache Flink service can increase the parallelism of the application in response to increased throughput.ParallelismConfigurationDescription.BuilderconfigurationType(String configurationType)Describes whether the application uses the default parallelism for the Managed Service for Apache Flink service.ParallelismConfigurationDescription.BuilderconfigurationType(ConfigurationType configurationType)Describes whether the application uses the default parallelism for the Managed Service for Apache Flink service.ParallelismConfigurationDescription.BuildercurrentParallelism(Integer currentParallelism)Describes the current number of parallel tasks that a Managed Service for Apache Flink application can perform.ParallelismConfigurationDescription.Builderparallelism(Integer parallelism)Describes the initial number of parallel tasks that a Managed Service for Apache Flink application can perform.ParallelismConfigurationDescription.BuilderparallelismPerKPU(Integer parallelismPerKPU)Describes the number of parallel tasks that a Managed Service for Apache Flink application can perform per Kinesis Processing Unit (KPU) used by the application.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
configurationType
ParallelismConfigurationDescription.Builder configurationType(String configurationType)
Describes whether the application uses the default parallelism for the Managed Service for Apache Flink service.
- Parameters:
configurationType- Describes whether the application uses the default parallelism for the Managed Service for Apache Flink service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConfigurationType,ConfigurationType
-
configurationType
ParallelismConfigurationDescription.Builder configurationType(ConfigurationType configurationType)
Describes whether the application uses the default parallelism for the Managed Service for Apache Flink service.
- Parameters:
configurationType- Describes whether the application uses the default parallelism for the Managed Service for Apache Flink service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConfigurationType,ConfigurationType
-
parallelism
ParallelismConfigurationDescription.Builder parallelism(Integer parallelism)
Describes the initial number of parallel tasks that a Managed Service for Apache Flink application can perform. If
AutoScalingEnabledis set to True, then Managed Service for Apache Flink can increase theCurrentParallelismvalue in response to application load. The service can increaseCurrentParallelismup to the maximum parallelism, which isParalellismPerKPUtimes the maximum KPUs for the application. The maximum KPUs for an application is 32 by default, and can be increased by requesting a limit increase. If application load is reduced, the service can reduce theCurrentParallelismvalue down to theParallelismsetting.- Parameters:
parallelism- Describes the initial number of parallel tasks that a Managed Service for Apache Flink application can perform. IfAutoScalingEnabledis set to True, then Managed Service for Apache Flink can increase theCurrentParallelismvalue in response to application load. The service can increaseCurrentParallelismup to the maximum parallelism, which isParalellismPerKPUtimes the maximum KPUs for the application. The maximum KPUs for an application is 32 by default, and can be increased by requesting a limit increase. If application load is reduced, the service can reduce theCurrentParallelismvalue down to theParallelismsetting.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parallelismPerKPU
ParallelismConfigurationDescription.Builder parallelismPerKPU(Integer parallelismPerKPU)
Describes the number of parallel tasks that a Managed Service for Apache Flink application can perform per Kinesis Processing Unit (KPU) used by the application.
- Parameters:
parallelismPerKPU- Describes the number of parallel tasks that a Managed Service for Apache Flink application can perform per Kinesis Processing Unit (KPU) used by the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
currentParallelism
ParallelismConfigurationDescription.Builder currentParallelism(Integer currentParallelism)
Describes the current number of parallel tasks that a Managed Service for Apache Flink application can perform. If
AutoScalingEnabledis set to True, Managed Service for Apache Flink can increase this value in response to application load. The service can increase this value up to the maximum parallelism, which isParalellismPerKPUtimes the maximum KPUs for the application. The maximum KPUs for an application is 32 by default, and can be increased by requesting a limit increase. If application load is reduced, the service can reduce theCurrentParallelismvalue down to theParallelismsetting.- Parameters:
currentParallelism- Describes the current number of parallel tasks that a Managed Service for Apache Flink application can perform. IfAutoScalingEnabledis set to True, Managed Service for Apache Flink can increase this value in response to application load. The service can increase this value up to the maximum parallelism, which isParalellismPerKPUtimes the maximum KPUs for the application. The maximum KPUs for an application is 32 by default, and can be increased by requesting a limit increase. If application load is reduced, the service can reduce theCurrentParallelismvalue down to theParallelismsetting.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
autoScalingEnabled
ParallelismConfigurationDescription.Builder autoScalingEnabled(Boolean autoScalingEnabled)
Describes whether the Managed Service for Apache Flink service can increase the parallelism of the application in response to increased throughput.
- Parameters:
autoScalingEnabled- Describes whether the Managed Service for Apache Flink service can increase the parallelism of the application in response to increased throughput.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-