Module Values.SavingsPlansSource

The Savings Plans commitment details.

Sourcetype nonrec t = {
  1. paymentOption : PaymentOption.t option;
    (*

    The payment option for the Savings Plans commitment.

    *)
  2. savingsPlansType : SupportedSavingsPlansType.t option;
    (*

    The Savings Plans type.

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

    The Region associated with the Savings Plans commitment.

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

    The instance family of the Savings Plans commitment.

    *)
  5. termInYears : TermInYears.t option;
    (*

    The term that you want the Savings Plans commitment for.

    *)
  6. savingsPlansCommitment : SavingsPlansCommitment.t option;
    (*

    The Savings Plans commitment.

    *)
  7. offeringId : GenericString.t option;
    (*

    The unique ID that's used to distinguish Savings Plans commitments from one another.

    *)
}
Sourceval make : ?paymentOption:??? -> ?savingsPlansType:??? -> ?region:??? -> ?instanceFamily:??? -> ?termInYears:??? -> ?savingsPlansCommitment:??? -> ?offeringId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of SavingsPlansCommitment.t | `Enum 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