Interface CfnApplicationV2.ApplicationRestoreConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationV2.ApplicationRestoreConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnApplicationV2
@Stability(Stable)
public static interface CfnApplicationV2.ApplicationRestoreConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the method and snapshot to use when restarting an application using previously saved application state.
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.*; ApplicationRestoreConfigurationProperty applicationRestoreConfigurationProperty = ApplicationRestoreConfigurationProperty.builder() .applicationRestoreType("applicationRestoreType") // the properties below are optional .snapshotName("snapshotName") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplicationV2.ApplicationRestoreConfigurationProperty
static final class
An implementation forCfnApplicationV2.ApplicationRestoreConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationRestoreType
Specifies how the application should be restored. -
getSnapshotName
The identifier of an existing snapshot of application state to use to restart an application.The application uses this value if
RESTORE_FROM_CUSTOM_SNAPSHOT
is specified for theApplicationRestoreType
. -
builder
@Stability(Stable) static CfnApplicationV2.ApplicationRestoreConfigurationProperty.Builder builder()
-