Module Values.ReplicationTimeSource

A container specifying S3 Replication Time Control (S3 RTC) related information, including whether S3 RTC is enabled and the time when all objects and operations on objects must be replicated. Must be specified together with a Metrics block.

Sourcetype nonrec t = {
  1. status : ReplicationTimeStatus.t;
    (*

    Specifies whether the replication time is enabled.

    *)
  2. time : ReplicationTimeValue.t;
    (*

    A container specifying the time by which replication should be complete for all objects and operations on objects.

    *)
}
Sourceval context_ : string
Sourceval make : status:ReplicationTimeStatus.t -> time:ReplicationTimeValue.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Integer of Minutes.t ]) 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