Module Values.RetentionConfigurationSource

An object with the name of the retention configuration and the retention period in days. The object stores the configuration for data retention in Config.

Sourcetype nonrec t = {
  1. name : RetentionConfigurationName.t option;
    (*

    The name of the retention configuration object.

    *)
  2. retentionPeriodInDays : RetentionPeriodInDays.t option;
    (*

    Number of days Config stores your historical information. Currently, only applicable to the configuration item history.

    *)
}
Sourceval make : ?name:??? -> ?retentionPeriodInDays:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of RetentionPeriodInDays.t | `String of RetentionConfigurationName.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