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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplicationV2.RunConfigurationProperty
static final class
An implementation forCfnApplicationV2.RunConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationRestoreConfiguration
Describes the restore behavior of a restarting application.- See Also:
-
getFlinkRunConfiguration
Describes the starting parameters for a Managed Service for Apache Flink application.- See Also:
-
builder
-