Show / Hide Table of Contents

Class CfnGlobalTable.PointInTimeRecoverySpecificationProperty

Represents the settings used to enable point in time recovery.

Inheritance
object
CfnGlobalTable.PointInTimeRecoverySpecificationProperty
Implements
CfnGlobalTable.IPointInTimeRecoverySpecificationProperty
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.DynamoDB
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnGlobalTable.PointInTimeRecoverySpecificationProperty : CfnGlobalTable.IPointInTimeRecoverySpecificationProperty
Syntax (vb)
Public Class CfnGlobalTable.PointInTimeRecoverySpecificationProperty Implements CfnGlobalTable.IPointInTimeRecoverySpecificationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-pointintimerecoveryspecification.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.DynamoDB;

             var pointInTimeRecoverySpecificationProperty = new PointInTimeRecoverySpecificationProperty {
                 PointInTimeRecoveryEnabled = false,
                 RecoveryPeriodInDays = 123
             };

Synopsis

Constructors

PointInTimeRecoverySpecificationProperty()

Represents the settings used to enable point in time recovery.

Properties

PointInTimeRecoveryEnabled

Indicates whether point in time recovery is enabled (true) or disabled (false) on the table.

RecoveryPeriodInDays

The number of preceding days for which continuous backups are taken and maintained.

Constructors

PointInTimeRecoverySpecificationProperty()

Represents the settings used to enable point in time recovery.

public PointInTimeRecoverySpecificationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-pointintimerecoveryspecification.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.DynamoDB;

             var pointInTimeRecoverySpecificationProperty = new PointInTimeRecoverySpecificationProperty {
                 PointInTimeRecoveryEnabled = false,
                 RecoveryPeriodInDays = 123
             };

Properties

PointInTimeRecoveryEnabled

Indicates whether point in time recovery is enabled (true) or disabled (false) on the table.

public object? PointInTimeRecoveryEnabled { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-pointintimerecoveryspecification.html#cfn-dynamodb-globaltable-pointintimerecoveryspecification-pointintimerecoveryenabled

RecoveryPeriodInDays

The number of preceding days for which continuous backups are taken and maintained.

public double? RecoveryPeriodInDays { get; set; }
Property Value

double?

Remarks

Your table data is only recoverable to any point-in-time from within the configured recovery period. This parameter is optional. If no value is provided, the value will default to 35.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-pointintimerecoveryspecification.html#cfn-dynamodb-globaltable-pointintimerecoveryspecification-recoveryperiodindays

Implements

CfnGlobalTable.IPointInTimeRecoverySpecificationProperty
Back to top Generated by DocFX