Module Values.OfferingSource

Reserved resources available for purchase

Sourcetype nonrec t = {
  1. arn : string option;
    (*

    Unique offering ARN, e.g. 'arn:aws:medialive:us-west-2:123456789012:offering:87654321'

    *)
  2. currencyCode : string option;
    (*

    Currency code for usagePrice and fixedPrice in ISO-4217 format, e.g. 'USD'

    *)
  3. duration : int option;
    (*

    Lease duration, e.g. '12'

    *)
  4. durationUnits : OfferingDurationUnits.t option;
    (*

    Units for duration, e.g. 'MONTHS'

    *)
  5. fixedPrice : float option;
    (*

    One-time charge for each reserved resource, e.g. '0.0' for a NO_UPFRONT offering

    *)
  6. offeringDescription : string option;
    (*

    Offering description, e.g. 'HD AVC output at 10-20 Mbps, 30 fps, and standard VQ in US West (Oregon)'

    *)
  7. offeringId : string option;
    (*

    Unique offering ID, e.g. '87654321'

    *)
  8. offeringType : OfferingType.t option;
    (*

    Offering type, e.g. 'NO_UPFRONT'

    *)
  9. region : string option;
    (*

    AWS region, e.g. 'us-west-2'

    *)
  10. resourceSpecification : ReservationResourceSpecification.t option;
    (*

    Resource configuration details

    *)
  11. usagePrice : float option;
    (*

    Recurring usage charge for each reserved resource, e.g. '157.0'

    *)
}
Sourceval make : ?arn:??? -> ?currencyCode:??? -> ?duration:??? -> ?durationUnits:??? -> ?fixedPrice:??? -> ?offeringDescription:??? -> ?offeringId:??? -> ?offeringType:??? -> ?region:??? -> ?resourceSpecification:??? -> ?usagePrice:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of float | `Enum of string | `Integer of int | `String of string | `Structure of (string * [> `Enum of string ]) 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