Interface CfnApplicationV2.RunConfigurationProperty

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

@Stability(Stable) public static interface CfnApplicationV2.RunConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Describes the starting parameters for an Managed Service for Apache Flink application.

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.kinesisanalytics.*;
 RunConfigurationProperty runConfigurationProperty = RunConfigurationProperty.builder()
         .applicationRestoreConfiguration(ApplicationRestoreConfigurationProperty.builder()
                 .applicationRestoreType("applicationRestoreType")
                 // the properties below are optional
                 .snapshotName("snapshotName")
                 .build())
         .flinkRunConfiguration(FlinkRunConfigurationProperty.builder()
                 .allowNonRestoredState(false)
                 .build())
         .build();
 

See Also: