[][src]Struct rusoto_kinesisanalyticsv2::FlinkApplicationConfigurationUpdate

pub struct FlinkApplicationConfigurationUpdate {
    pub checkpoint_configuration_update: Option<CheckpointConfigurationUpdate>,
    pub monitoring_configuration_update: Option<MonitoringConfigurationUpdate>,
    pub parallelism_configuration_update: Option<ParallelismConfigurationUpdate>,
}

Describes updates to the configuration parameters for a Java-based Amazon Kinesis Data Analytics application.

Fields

checkpoint_configuration_update: Option<CheckpointConfigurationUpdate>

Describes updates to an application's checkpointing configuration. Checkpointing is the process of persisting application state for fault tolerance.

monitoring_configuration_update: Option<MonitoringConfigurationUpdate>

Describes updates to the configuration parameters for Amazon CloudWatch logging for an application.

parallelism_configuration_update: Option<ParallelismConfigurationUpdate>

Describes updates to the parameters for how an application executes multiple tasks simultaneously.

Trait Implementations

impl Clone for FlinkApplicationConfigurationUpdate[src]

impl Debug for FlinkApplicationConfigurationUpdate[src]

impl Default for FlinkApplicationConfigurationUpdate[src]

impl PartialEq<FlinkApplicationConfigurationUpdate> for FlinkApplicationConfigurationUpdate[src]

impl Serialize for FlinkApplicationConfigurationUpdate[src]

impl StructuralPartialEq for FlinkApplicationConfigurationUpdate[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.