interface PointInTimeRecoverySpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DynamoDB.CfnTablePropsMixin.PointInTimeRecoverySpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdynamodb#CfnTablePropsMixin_PointInTimeRecoverySpecificationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.dynamodb.CfnTablePropsMixin.PointInTimeRecoverySpecificationProperty |
Python | aws_cdk.cfn_property_mixins.aws_dynamodb.CfnTablePropsMixin.PointInTimeRecoverySpecificationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_dynamodb » CfnTablePropsMixin » PointInTimeRecoverySpecificationProperty |
The settings used to enable point in time recovery.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_dynamodb as dynamodb } from '@aws-cdk/cfn-property-mixins';
const pointInTimeRecoverySpecificationProperty: dynamodb.CfnTablePropsMixin.PointInTimeRecoverySpecificationProperty = {
pointInTimeRecoveryEnabled: false,
recoveryPeriodInDays: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| point | boolean | IResolvable | Indicates whether point in time recovery is enabled (true) or disabled (false) on the table. |
| recovery | number | The number of preceding days for which continuous backups are taken and maintained. |
pointInTimeRecoveryEnabled?
Type:
boolean | IResolvable
(optional)
Indicates whether point in time recovery is enabled (true) or disabled (false) on the table.
recoveryPeriodInDays?
Type:
number
(optional)
The number of preceding days for which continuous backups are taken and maintained.
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.

.NET
Go
Java
Python
TypeScript