Module Values.ResourceSpecificationSource

A definition of what is being billed for, including the type and amount.

Sourcetype nonrec t = {
  1. reservedBitrate : Integer.t option;
    (*

    The amount of outbound bandwidth that is discounted in the offering.

    *)
  2. resourceType : ResourceType.t option;
    (*

    The type of resource and the unit that is being billed for.

    *)
}
Sourceval make : ?reservedBitrate:??? -> ?resourceType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.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