Module Values.RetentionPeriodSource

The number of days your data is kept in the hot tier. By default, your data is kept indefinitely in the hot tier.

Sourcetype nonrec t = {
  1. numberOfDays : NumberOfDays.t option;
    (*

    The number of days that your data is kept. If you specified a value for this parameter, the unlimited parameter must be false.

    *)
  2. unlimited : Unlimited.t option;
    (*

    If true, your data is kept indefinitely. If configured to true, you must not specify a value for the numberOfDays parameter.

    *)
}
Sourceval make : ?numberOfDays:??? -> ?unlimited:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Unlimited.t | `Integer of NumberOfDays.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