Interface CfnApplication.ApplicationRestoreConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplication.ApplicationRestoreConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnApplication
@Stability(Stable)
public static interface CfnApplication.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.kinesisanalyticsv2.*; ApplicationRestoreConfigurationProperty applicationRestoreConfigurationProperty = ApplicationRestoreConfigurationProperty.builder() .applicationRestoreType("applicationRestoreType") // the properties below are optional .snapshotName("snapshotName") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplication.ApplicationRestoreConfigurationProperty
static final class
An implementation forCfnApplication.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
-