Module Values.SavingsPlansUtilizationByTimeSource

The amount of Savings Plans utilization (in hours).

Sourcetype nonrec t = {
  1. timePeriod : DateInterval.t option;
  2. utilization : SavingsPlansUtilization.t option;
    (*

    A ratio of your effectiveness of using existing Savings Plans to apply to workloads that are Savings Plans eligible.

    *)
  3. savings : SavingsPlansSavings.t option;
    (*

    The amount that's saved by using existing Savings Plans. Savings returns both net savings from Savings Plans and also the onDemandCostEquivalent of the Savings Plans when considering the utilization rate.

    *)
  4. amortizedCommitment : SavingsPlansAmortizedCommitment.t option;
    (*

    The total amortized commitment for a Savings Plans. This includes the sum of the upfront and recurring Savings Plans fees.

    *)
}
Sourceval make : ?timePeriod:??? -> ?utilization:??? -> ?savings:??? -> ?amortizedCommitment:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of YearMonthDay.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