Class CfnGlobalTable.TimeToLiveSpecificationProperty
Represents the settings used to enable or disable Time to Live (TTL) for the specified table.
Inheritance
Namespace: Amazon.CDK.AWS.DynamoDB
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class TimeToLiveSpecificationProperty : Object, CfnGlobalTable.ITimeToLiveSpecificationProperty
Syntax (vb)
Public Class TimeToLiveSpecificationProperty
Inherits Object
Implements CfnGlobalTable.ITimeToLiveSpecificationProperty
Remarks
All replicas will have the same time to live configuration.
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 timeToLiveSpecificationProperty = new TimeToLiveSpecificationProperty {
Enabled = false,
// the properties below are optional
AttributeName = "attributeName"
};
Synopsis
Constructors
Time |
Properties
Attribute |
The name of the attribute used to store the expiration time for items in the table. |
Enabled | Indicates whether TTL is to be enabled (true) or disabled (false) on the table. |
Constructors
TimeToLiveSpecificationProperty()
public TimeToLiveSpecificationProperty()
Properties
AttributeName
The name of the attribute used to store the expiration time for items in the table.
public string AttributeName { get; set; }
Property Value
System.
Remarks
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.
Enabled
Indicates whether TTL is to be enabled (true) or disabled (false) on the table.
public object Enabled { get; set; }
Property Value
System.