Show / Hide Table of Contents

Interface CfnTablePropsMixin.ITimeToLiveSpecificationProperty

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

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.DynamoDB
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnTablePropsMixin.ITimeToLiveSpecificationProperty
Syntax (vb)
Public Interface CfnTablePropsMixin.ITimeToLiveSpecificationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-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.CfnPropertyMixins.AWS.DynamoDB;

             var timeToLiveSpecificationProperty = new TimeToLiveSpecificationProperty {
                 AttributeName = "attributeName",
                 Enabled = false
             };

Synopsis

Properties

AttributeName

The name of the TTL 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.

Properties

AttributeName

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

string? AttributeName { get; }
Property Value

string

Remarks

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

    Enabled

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

    object? Enabled { get; }
    Property Value

    object

    Remarks

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

    Type union: either bool or IResolvable

    Back to top Generated by DocFX