@Stability(value=Stable)
public static interface CfnApplication.FlinkRunConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
FlinkRunConfigurationProperty flinkRunConfigurationProperty = FlinkRunConfigurationProperty.builder()
.allowNonRestoredState(false)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApplication.FlinkRunConfigurationProperty.Builder
A builder for
CfnApplication.FlinkRunConfigurationProperty |
static class |
CfnApplication.FlinkRunConfigurationProperty.Jsii$Proxy
An implementation for
CfnApplication.FlinkRunConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnApplication.FlinkRunConfigurationProperty.Builder |
builder() |
default Object |
getAllowNonRestoredState()
When restoring from a snapshot, specifies whether the runtime is allowed to skip a state that cannot be mapped to the new program.
|
@Stability(value=Stable) @Nullable default Object getAllowNonRestoredState()
This will happen if the program is updated between snapshots to remove stateful parameters, and state data in the snapshot no longer corresponds to valid application data. For more information, see Allowing Non-Restored State in the Apache Flink documentation .
This value defaults to
false. If you update your application without specifying this parameter,AllowNonRestoredStatewill be set tofalse, even if it was previously set totrue.
@Stability(value=Stable) static CfnApplication.FlinkRunConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.