Values.TimeToLiveSpecificationSourceRepresents the settings used to enable or disable Time to Live (TTL) for the specified table.
type nonrec t = {enabled : TimeToLiveEnabled.t;Indicates whether TTL is to be enabled (true) or disabled (false) on the table.
*)attributeName : TimeToLiveAttributeName.t;The name of the TTL attribute used to store the expiration time for items in the table.
*)}val make :
enabled:TimeToLiveEnabled.t ->
attributeName:TimeToLiveAttributeName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of TimeToLiveEnabled.t
| `String of TimeToLiveAttributeName.t ])
list ]