[][src]Struct rusoto_kinesisanalyticsv2::CheckpointConfigurationUpdate

pub struct CheckpointConfigurationUpdate {
    pub checkpoint_interval_update: Option<i64>,
    pub checkpointing_enabled_update: Option<bool>,
    pub configuration_type_update: Option<String>,
    pub min_pause_between_checkpoints_update: Option<i64>,
}

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

Fields

checkpoint_interval_update: Option<i64>

Describes updates to the interval in milliseconds between checkpoint operations.

If CheckpointConfiguration.ConfigurationType is DEFAULT, the application will use a CheckpointInterval vaue of 60000, even if this value is set to another value using this API or in application code.

checkpointing_enabled_update: Option<bool>

Describes updates to whether checkpointing is enabled for an application.

If CheckpointConfiguration.ConfigurationType is DEFAULT, the application will use a CheckpointingEnabled value of true, even if this value is set to another value using this API or in application code.

configuration_type_update: Option<String>

Describes updates to whether the application uses the default checkpointing behavior of Kinesis Data Analytics. You must set this property to CUSTOM in order to set the CheckpointingEnabled, CheckpointInterval, or MinPauseBetweenCheckpoints parameters.

If this value is set to DEFAULT, the application will use the following values, even if they are set to other values using APIs or application code:

  • CheckpointingEnabled: true

  • CheckpointInterval: 60000

  • MinPauseBetweenCheckpoints: 5000

min_pause_between_checkpoints_update: Option<i64>

Describes updates to the minimum time in milliseconds after a checkpoint operation completes that a new checkpoint operation can start.

If CheckpointConfiguration.ConfigurationType is DEFAULT, the application will use a MinPauseBetweenCheckpoints value of 5000, even if this value is set using this API or in application code.

Trait Implementations

impl Clone for CheckpointConfigurationUpdate[src]

impl Debug for CheckpointConfigurationUpdate[src]

impl Default for CheckpointConfigurationUpdate[src]

impl PartialEq<CheckpointConfigurationUpdate> for CheckpointConfigurationUpdate[src]

impl Serialize for CheckpointConfigurationUpdate[src]

impl StructuralPartialEq for CheckpointConfigurationUpdate[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, 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.