Module Values.SavingsPlanOfferingSource

Information about a Savings Plan offering.

Sourcetype nonrec t = {
  1. offeringId : UUID.t option;
    (*

    The ID of the offering.

    *)
  2. productTypes : SavingsPlanProductTypeList.t option;
    (*

    The product type.

    *)
  3. planType : SavingsPlanType.t option;
    (*

    The plan type.

    *)
  4. description : SavingsPlanDescription.t option;
    (*

    The description.

    *)
  5. paymentOption : SavingsPlanPaymentOption.t option;
    (*

    The payment option.

    *)
  6. durationSeconds : SavingsPlansDuration.t option;
    (*

    The duration, in seconds.

    *)
  7. currency : CurrencyCode.t option;
    (*

    The currency.

    *)
  8. serviceCode : SavingsPlanServiceCode.t option;
    (*

    The service.

    *)
  9. usageType : SavingsPlanUsageType.t option;
    (*

    The usage details of the line item in the billing report.

    *)
  10. operation : SavingsPlanOperation.t option;
    (*

    The specific Amazon Web Services operation for the line item in the billing report.

    *)
  11. properties : SavingsPlanOfferingPropertyList.t option;
    (*

    The properties.

    *)
}
Sourceval make : ?offeringId:??? -> ?productTypes:??? -> ?planType:??? -> ?description:??? -> ?paymentOption:??? -> ?durationSeconds:??? -> ?currency:??? -> ?serviceCode:??? -> ?usageType:??? -> ?operation:??? -> ?properties:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `Structure of (string * [> `Enum of string | `String of JsonSafeFilterValueString.t ]) list ] list | `Long of SavingsPlansDuration.t | `String of UUID.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