/** *
Represents the settings used to enable or disable Time to Live for the specified table.
*/ export interface _TimeToLiveSpecification { /** *Indicates whether Time To Live is to be enabled (true) or disabled (false) on the table.
*/ Enabled: boolean; /** *The name of the Time to Live attribute used to store the expiration time for items in the table.
*/ AttributeName: string; } export declare type _UnmarshalledTimeToLiveSpecification = _TimeToLiveSpecification;