Interface CfnApplication.CheckpointConfigurationProperty

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

@Stability(Stable) public static interface CfnApplication.CheckpointConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Describes an application's checkpointing configuration.

Checkpointing is the process of persisting application state for fault tolerance. For more information, see Checkpoints for Fault Tolerance 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.kinesisanalyticsv2.*;
 CheckpointConfigurationProperty checkpointConfigurationProperty = CheckpointConfigurationProperty.builder()
         .configurationType("configurationType")
         // the properties below are optional
         .checkpointingEnabled(false)
         .checkpointInterval(123)
         .minPauseBetweenCheckpoints(123)
         .build();
 

See Also: