aws-cdk-lib.aws_dynamodb.CfnGlobalTable.TimeToLiveSpecificationProperty

interface TimeToLiveSpecificationProperty

LanguageType name
.NETAmazon.CDK.AWS.DynamoDB.CfnGlobalTable.TimeToLiveSpecificationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsdynamodb#CfnGlobalTable_TimeToLiveSpecificationProperty
Javasoftware.amazon.awscdk.services.dynamodb.CfnGlobalTable.TimeToLiveSpecificationProperty
Pythonaws_cdk.aws_dynamodb.CfnGlobalTable.TimeToLiveSpecificationProperty
TypeScript aws-cdk-lib » aws_dynamodb » CfnGlobalTable » TimeToLiveSpecificationProperty

Represents the settings used to enable or disable Time to Live (TTL) for the specified table.

All replicas will have the same time to live configuration.

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-lib';
const timeToLiveSpecificationProperty: dynamodb.CfnGlobalTable.TimeToLiveSpecificationProperty = {
  enabled: false,

  // the properties below are optional
  attributeName: 'attributeName',
};

Properties

NameTypeDescription
enabledboolean | IResolvableIndicates whether TTL is to be enabled (true) or disabled (false) on the table.
attributeName?stringThe name of the attribute used to store the expiration time for items in the table.

enabled

Type: boolean | IResolvable

Indicates whether TTL is to be enabled (true) or disabled (false) on the table.


attributeName?

Type: string (optional)

The name of the attribute used to store the expiration time for items in the table.

Currently, you cannot directly change the attribute name used to evaluate time to live. In order to do so, you must first disable time to live, and then re-enable it with the new attribute name. It can take up to one hour for changes to time to live to take effect. If you attempt to modify time to live within that time window, your stack operation might be delayed.