Module Values.SavingsPlanRateSource

Information about a Savings Plan rate.

Sourcetype nonrec t = {
  1. rate : Amount.t option;
    (*

    The rate.

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

    The currency.

    *)
  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 : SavingsPlanRatePropertyList.t option;
    (*

    The properties.

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