Module Values.SavingsPlansUtilizationSource

The measurement of how well you're using your existing Savings Plans.

Sourcetype nonrec t = {
  1. totalCommitment : GenericString.t option;
    (*

    The total amount of Savings Plans commitment that's been purchased in an account (or set of accounts).

    *)
  2. usedCommitment : GenericString.t option;
    (*

    The amount of your Savings Plans commitment that was consumed from Savings Plans eligible usage in a specific period.

    *)
  3. unusedCommitment : GenericString.t option;
    (*

    The amount of your Savings Plans commitment that wasn't consumed from Savings Plans eligible usage in a specific period.

    *)
  4. utilizationPercentage : GenericString.t option;
    (*

    The amount of UsedCommitment divided by the TotalCommitment for your Savings Plans.

    *)
}
Sourceval make : ?totalCommitment:??? -> ?usedCommitment:??? -> ?unusedCommitment:??? -> ?utilizationPercentage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of GenericString.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