Show / Hide Table of Contents

Class CfnTablePropsMixin.TimeToLiveSpecificationProperty

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

Inheritance
object
CfnTablePropsMixin.TimeToLiveSpecificationProperty
Implements
CfnTablePropsMixin.ITimeToLiveSpecificationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.DynamoDB
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnTablePropsMixin.TimeToLiveSpecificationProperty : CfnTablePropsMixin.ITimeToLiveSpecificationProperty
Syntax (vb)
Public Class CfnTablePropsMixin.TimeToLiveSpecificationProperty Implements 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

Constructors

TimeToLiveSpecificationProperty()

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

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.

Constructors

TimeToLiveSpecificationProperty()

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

public TimeToLiveSpecificationProperty()
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
             };

Properties

AttributeName

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

public string? AttributeName { get; set; }
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.

    public object? Enabled { get; set; }
    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

    Implements

    CfnTablePropsMixin.ITimeToLiveSpecificationProperty
    Back to top Generated by DocFX