Module Values.ArchiveGroupSettingsSource

Archive Group Settings

Sourcetype nonrec t = {
  1. archiveCdnSettings : ArchiveCdnSettings.t option;
    (*

    Parameters that control interactions with the CDN.

    *)
  2. destination : OutputLocationRef.t;
    (*

    A directory and base filename where archive files should be written.

    *)
  3. rolloverInterval : int option;
    (*

    Number of seconds to write to archive file before closing and starting a new one.

    *)
}
Sourceval context_ : string
Sourceval make : ?archiveCdnSettings:??? -> ?rolloverInterval:??? -> destination:OutputLocationRef.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of int | `Structure of (string * [> `String of string | `Structure of (string * [> `Enum of string ]) list ]) list ]) 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