Class CfnGlobalTable.PointInTimeRecoverySpecificationProperty
Represents the settings used to enable point in time recovery.
Inheritance
Namespace: Amazon.CDK.AWS.DynamoDB
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class PointInTimeRecoverySpecificationProperty : Object, CfnGlobalTable.IPointInTimeRecoverySpecificationProperty
Syntax (vb)
Public Class PointInTimeRecoverySpecificationProperty
Inherits Object
Implements CfnGlobalTable.IPointInTimeRecoverySpecificationProperty
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.DynamoDB;
var pointInTimeRecoverySpecificationProperty = new PointInTimeRecoverySpecificationProperty {
PointInTimeRecoveryEnabled = false,
RecoveryPeriodInDays = 123
};
Synopsis
Constructors
Point |
Properties
Point |
Indicates whether point in time recovery is enabled (true) or disabled (false) on the table. |
Recovery |
The number of preceding days for which continuous backups are taken and maintained. |
Constructors
PointInTimeRecoverySpecificationProperty()
public PointInTimeRecoverySpecificationProperty()
Properties
PointInTimeRecoveryEnabled
Indicates whether point in time recovery is enabled (true) or disabled (false) on the table.
public object PointInTimeRecoveryEnabled { get; set; }
Property Value
System.
Remarks
RecoveryPeriodInDays
The number of preceding days for which continuous backups are taken and maintained.
public Nullable<double> RecoveryPeriodInDays { get; set; }
Property Value
System.
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.