Show / Hide Table of Contents

Class CfnApplication.ApplicationRestoreConfigurationProperty

Specifies the method and snapshot to use when restarting an application using previously saved application state.

Inheritance
object
CfnApplication.ApplicationRestoreConfigurationProperty
Implements
CfnApplication.IApplicationRestoreConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.KinesisAnalyticsV2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnApplication.ApplicationRestoreConfigurationProperty : CfnApplication.IApplicationRestoreConfigurationProperty
Syntax (vb)
Public Class CfnApplication.ApplicationRestoreConfigurationProperty Implements CfnApplication.IApplicationRestoreConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationrestoreconfiguration.html

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

ApplicationRestoreConfigurationProperty()

Specifies the method and snapshot to use when restarting an application using previously saved application state.

Properties

ApplicationRestoreType

Specifies how the application should be restored.

SnapshotName

The identifier of an existing snapshot of application state to use to restart an application.

Constructors

ApplicationRestoreConfigurationProperty()

Specifies the method and snapshot to use when restarting an application using previously saved application state.

public ApplicationRestoreConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationrestoreconfiguration.html

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"
             };

Properties

ApplicationRestoreType

Specifies how the application should be restored.

public string ApplicationRestoreType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationrestoreconfiguration.html#cfn-kinesisanalyticsv2-application-applicationrestoreconfiguration-applicationrestoretype

SnapshotName

The identifier of an existing snapshot of application state to use to restart an application.

public string? SnapshotName { get; set; }
Property Value

string

Remarks

The application uses this value if RESTORE_FROM_CUSTOM_SNAPSHOT is specified for the ApplicationRestoreType .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-applicationrestoreconfiguration.html#cfn-kinesisanalyticsv2-application-applicationrestoreconfiguration-snapshotname

Implements

CfnApplication.IApplicationRestoreConfigurationProperty
Back to top Generated by DocFX