Module Values.SavingsPlanOfferingRateSource

Information about a Savings Plan offering rate.

Sourcetype nonrec t = {
  1. savingsPlanOffering : ParentSavingsPlanOffering.t option;
    (*

    The Savings Plan offering.

    *)
  2. rate : SavingsPlanRatePricePerUnit.t option;
    (*

    The Savings Plan rate.

    *)
  3. unit : SavingsPlanRateUnit.t option;
    (*

    The unit.

    *)
  4. productType : SavingsPlanProductType.t option;
    (*

    The product type.

    *)
  5. serviceCode : SavingsPlanRateServiceCode.t option;
    (*

    The service.

    *)
  6. usageType : SavingsPlanRateUsageType.t option;
    (*

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

    *)
  7. operation : SavingsPlanRateOperation.t option;
    (*

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

    *)
  8. properties : SavingsPlanOfferingRatePropertyList.t option;
    (*

    The properties.

    *)
}
Sourceval make : ?savingsPlanOffering:??? -> ?rate:??? -> ?unit:??? -> ?productType:??? -> ?serviceCode:??? -> ?usageType:??? -> ?operation:??? -> ?properties:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of JsonSafeFilterValueString.t ]) list ] list | `String of SavingsPlanRatePricePerUnit.t | `Structure of (string * [> `Enum of string | `Long of SavingsPlansDuration.t | `String of UUID.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