Module Values.SavingsPlansAmortizedCommitmentSource

The amortized amount of Savings Plans purchased in a specific account during a specific time interval.

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

    The amortized amount of your Savings Plans commitment that was purchased with either a Partial or a NoUpfront.

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

    The amortized amount of your Savings Plans commitment that was purchased with an Upfront or PartialUpfront Savings Plans.

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

    The total amortized amount of your Savings Plans commitment, regardless of your Savings Plans purchase method.

    *)
}
Sourceval make : ?amortizedRecurringCommitment:??? -> ?amortizedUpfrontCommitment:??? -> ?totalAmortizedCommitment:??? -> 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