Class CfnApplication.ApplicationRestoreConfigurationProperty
Specifies the method and snapshot to use when restarting an application using previously saved application state.
Inheritance
Namespace: Amazon.CDK.AWS.KinesisAnalyticsV2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ApplicationRestoreConfigurationProperty : Object, CfnApplication.IApplicationRestoreConfigurationProperty
Syntax (vb)
Public Class ApplicationRestoreConfigurationProperty
Inherits Object
Implements CfnApplication.IApplicationRestoreConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.KinesisAnalyticsV2;
var applicationRestoreConfigurationProperty = new ApplicationRestoreConfigurationProperty {
ApplicationRestoreType = "applicationRestoreType",
// the properties below are optional
SnapshotName = "snapshotName"
};
Synopsis
Constructors
Application |
Properties
Application |
Specifies how the application should be restored. |
Snapshot |
The identifier of an existing snapshot of application state to use to restart an application. |
Constructors
ApplicationRestoreConfigurationProperty()
public ApplicationRestoreConfigurationProperty()
Properties
ApplicationRestoreType
Specifies how the application should be restored.
public string ApplicationRestoreType { get; set; }
Property Value
System.
Remarks
SnapshotName
The identifier of an existing snapshot of application state to use to restart an application.
public string SnapshotName { get; set; }
Property Value
System.
Remarks
The application uses this value if RESTORE_FROM_CUSTOM_SNAPSHOT
is specified for the ApplicationRestoreType
.