Module Values.MinimumThroughputBillingCommitmentOutputSource

Represents the current status of minimum throughput billing commitment for an account.

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

    The current status of the minimum throughput billing commitment.

    *)
  2. startedAt : Timestamp.t option;
    (*

    The timestamp when the commitment was started.

    *)
  3. endedAt : Timestamp.t option;
    (*

    The timestamp when the commitment was ended.

    *)
  4. earliestAllowedEndAt : Timestamp.t option;
    (*

    The earliest timestamp when the commitment can be ended.

    *)
}
Sourceval make : ?status:??? -> ?startedAt:??? -> ?endedAt:??? -> ?earliestAllowedEndAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Timestamp of Timestamp.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