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();
 

See Also: