interface PointInTimeRecoverySpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DynamoDB.Mixins.CfnTablePropsMixin.PointInTimeRecoverySpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdynamodb/mixins#CfnTablePropsMixin_PointInTimeRecoverySpecificationProperty |
Java | software.amazon.awscdk.mixins.preview.services.dynamodb.mixins.CfnTablePropsMixin.PointInTimeRecoverySpecificationProperty |
Python | aws_cdk.mixins_preview.aws_dynamodb.mixins.CfnTablePropsMixin.PointInTimeRecoverySpecificationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_dynamodb » mixins » 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 { mixins as dynamodb_mixins } from '@aws-cdk/mixins-preview/aws-dynamodb';
const pointInTimeRecoverySpecificationProperty: dynamodb_mixins.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