Show / Hide Table of Contents

Class CfnApplicationPropsMixin.ApplicationRestoreConfigurationProperty

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

Inheritance
object
CfnApplicationPropsMixin.ApplicationRestoreConfigurationProperty
Implements
CfnApplicationPropsMixin.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.CfnPropertyMixins.AWS.KinesisAnalyticsV2
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnApplicationPropsMixin.ApplicationRestoreConfigurationProperty : CfnApplicationPropsMixin.IApplicationRestoreConfigurationProperty
Syntax (vb)
Public Class CfnApplicationPropsMixin.ApplicationRestoreConfigurationProperty Implements CfnApplicationPropsMixin.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.CfnPropertyMixins.AWS.KinesisAnalyticsV2;

             var applicationRestoreConfigurationProperty = new ApplicationRestoreConfigurationProperty {
                 ApplicationRestoreType = "applicationRestoreType",
                 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.CfnPropertyMixins.AWS.KinesisAnalyticsV2;

             var applicationRestoreConfigurationProperty = new ApplicationRestoreConfigurationProperty {
                 ApplicationRestoreType = "applicationRestoreType",
                 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

CfnApplicationPropsMixin.IApplicationRestoreConfigurationProperty
Back to top Generated by DocFX