/** *
The description of the Time to Live (TTL) status on the specified table.
*/ export interface _TimeToLiveDescription { /** *The Time to Live status for the table.
*/ TimeToLiveStatus?: 'ENABLING' | 'DISABLING' | 'ENABLED' | 'DISABLED' | string; /** *The name of the Time to Live attribute for items in the table.
*/ AttributeName?: string; } export declare type _UnmarshalledTimeToLiveDescription = _TimeToLiveDescription;