Show / Hide Table of Contents

Class CfnGlobalTable.TimeToLiveSpecificationProperty

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

Inheritance
System.Object
CfnGlobalTable.TimeToLiveSpecificationProperty
Implements
CfnGlobalTable.ITimeToLiveSpecificationProperty
Namespace: Amazon.CDK.AWS.DynamoDB
Assembly: Amazon.CDK.AWS.DynamoDB.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.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-timetolivespecification.html

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

TimeToLiveSpecificationProperty()

Properties

AttributeName

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.String

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.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-timetolivespecification.html#cfn-dynamodb-globaltable-timetolivespecification-attributename

Enabled

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

public object Enabled { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-timetolivespecification.html#cfn-dynamodb-globaltable-timetolivespecification-enabled

Implements

CfnGlobalTable.ITimeToLiveSpecificationProperty
Back to top Generated by DocFX