#[non_exhaustive]pub struct ParallelismConfigurationUpdate {
pub configuration_type_update: Option<ConfigurationType>,
pub parallelism_update: Option<i32>,
pub parallelism_per_kpu_update: Option<i32>,
pub auto_scaling_enabled_update: Option<bool>,
}Expand description
Describes updates to parameters for how an application executes multiple tasks simultaneously.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.configuration_type_update: Option<ConfigurationType>Describes updates to whether the application uses the default parallelism for the Kinesis Data Analytics service, or if a custom parallelism is used. You must set this property to CUSTOM in order to change your application's AutoScalingEnabled, Parallelism, or ParallelismPerKPU properties.
parallelism_update: Option<i32>Describes updates to the initial number of parallel tasks an application can perform. If AutoScalingEnabled is set to True, then Kinesis Data Analytics can increase the CurrentParallelism value in response to application load. The service can increase CurrentParallelism up to the maximum parallelism, which is ParalellismPerKPU times 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 will reduce CurrentParallelism down to the Parallelism setting.
parallelism_per_kpu_update: Option<i32>Describes updates to the number of parallel tasks an application can perform per Kinesis Processing Unit (KPU) used by the application.
auto_scaling_enabled_update: Option<bool>Describes updates to whether the Kinesis Data Analytics service can increase the parallelism of a Flink-based Kinesis Data Analytics application in response to increased throughput.
Implementations§
source§impl ParallelismConfigurationUpdate
impl ParallelismConfigurationUpdate
sourcepub fn configuration_type_update(&self) -> Option<&ConfigurationType>
pub fn configuration_type_update(&self) -> Option<&ConfigurationType>
Describes updates to whether the application uses the default parallelism for the Kinesis Data Analytics service, or if a custom parallelism is used. You must set this property to CUSTOM in order to change your application's AutoScalingEnabled, Parallelism, or ParallelismPerKPU properties.
sourcepub fn parallelism_update(&self) -> Option<i32>
pub fn parallelism_update(&self) -> Option<i32>
Describes updates to the initial number of parallel tasks an application can perform. If AutoScalingEnabled is set to True, then Kinesis Data Analytics can increase the CurrentParallelism value in response to application load. The service can increase CurrentParallelism up to the maximum parallelism, which is ParalellismPerKPU times 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 will reduce CurrentParallelism down to the Parallelism setting.
sourcepub fn parallelism_per_kpu_update(&self) -> Option<i32>
pub fn parallelism_per_kpu_update(&self) -> Option<i32>
Describes updates to the number of parallel tasks an application can perform per Kinesis Processing Unit (KPU) used by the application.
sourcepub fn auto_scaling_enabled_update(&self) -> Option<bool>
pub fn auto_scaling_enabled_update(&self) -> Option<bool>
Describes updates to whether the Kinesis Data Analytics service can increase the parallelism of a Flink-based Kinesis Data Analytics application in response to increased throughput.
source§impl ParallelismConfigurationUpdate
impl ParallelismConfigurationUpdate
sourcepub fn builder() -> ParallelismConfigurationUpdateBuilder
pub fn builder() -> ParallelismConfigurationUpdateBuilder
Creates a new builder-style object to manufacture ParallelismConfigurationUpdate.
Trait Implementations§
source§impl Clone for ParallelismConfigurationUpdate
impl Clone for ParallelismConfigurationUpdate
source§fn clone(&self) -> ParallelismConfigurationUpdate
fn clone(&self) -> ParallelismConfigurationUpdate
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for ParallelismConfigurationUpdate
impl PartialEq for ParallelismConfigurationUpdate
source§fn eq(&self, other: &ParallelismConfigurationUpdate) -> bool
fn eq(&self, other: &ParallelismConfigurationUpdate) -> bool
self and other values to be equal, and is used
by ==.