Class CfnGlobalTable.PointInTimeRecoverySpecificationProperty
Represents the settings used to enable point in time recovery.
Inherited Members
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
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
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
Remarks
RecoveryPeriodInDays
The number of preceding days for which continuous backups are taken and maintained.
public double? RecoveryPeriodInDays { get; set; }
Property Value
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.