Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TimeToLiveSpecification

import type { TimeToLiveSpecification } from "https://aws-api.deno.dev/v0.3/services/dynamodb.ts?docs=full";

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

interface TimeToLiveSpecification {
AttributeName: string;
Enabled: boolean;
}

§Properties

§
AttributeName: string
[src]

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

§
Enabled: boolean
[src]

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