interface PointInTimeRecoverySpecificationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.DynamoDB.CfnGlobalTable.PointInTimeRecoverySpecificationProperty | 
  Java | software.amazon.awscdk.services.dynamodb.CfnGlobalTable.PointInTimeRecoverySpecificationProperty | 
  Python | aws_cdk.aws_dynamodb.CfnGlobalTable.PointInTimeRecoverySpecificationProperty | 
  TypeScript  | @aws-cdk/aws-dynamodb » CfnGlobalTable » PointInTimeRecoverySpecificationProperty | 
Represents 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 * as dynamodb from '@aws-cdk/aws-dynamodb';
const pointInTimeRecoverySpecificationProperty: dynamodb.CfnGlobalTable.PointInTimeRecoverySpecificationProperty = {
  pointInTimeRecoveryEnabled: false,
};
Properties
| Name | Type | Description | 
|---|---|---|
| point | boolean | IResolvable | Indicates whether point in time recovery is enabled (true) or disabled (false) on the table. | 
pointInTimeRecoveryEnabled?
Type:
boolean | IResolvable
(optional)
Indicates whether point in time recovery is enabled (true) or disabled (false) on the table.

 .NET
 Java
 Python
 TypeScript