Module Values.DescribeOfferingResponseSource

Placeholder documentation for DescribeOfferingResponse

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'

    *)
}
Sourcetype nonrec error = [
  1. | `BadGatewayException of BadGatewayException.t
  2. | `BadRequestException of BadRequestException.t
  3. | `ForbiddenException of ForbiddenException.t
  4. | `GatewayTimeoutException of GatewayTimeoutException.t
  5. | `InternalServerErrorException of InternalServerErrorException.t
  6. | `NotFoundException of NotFoundException.t
  7. | `TooManyRequestsException of TooManyRequestsException.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?arn:??? -> ?currencyCode:??? -> ?duration:??? -> ?durationUnits:??? -> ?fixedPrice:??? -> ?offeringDescription:??? -> ?offeringId:??? -> ?offeringType:??? -> ?region:??? -> ?resourceSpecification:??? -> ?usagePrice:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadGatewayException of BadGatewayException.t | `BadRequestException of BadRequestException.t | `ForbiddenException of ForbiddenException.t | `GatewayTimeoutException of GatewayTimeoutException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadGatewayException of BadGatewayException.t | `BadRequestException of BadRequestException.t | `ForbiddenException of ForbiddenException.t | `GatewayTimeoutException of GatewayTimeoutException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.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