Module Values.TimeToLiveSpecificationSource

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

Sourcetype nonrec t = {
  1. enabled : TimeToLiveEnabled.t;
    (*

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

    *)
  2. attributeName : TimeToLiveAttributeName.t;
    (*

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

    *)
}
Sourceval context_ : string
Sourceval make : enabled:TimeToLiveEnabled.t -> attributeName:TimeToLiveAttributeName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of TimeToLiveEnabled.t | `String of TimeToLiveAttributeName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t