package aws-ec2

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. currency_code : CurrencyCodeValues.t option;
  2. duration : Aws.BaseTypes.Integer.t option;
  3. host_id_set : ResponseHostIdSet.t;
  4. host_reservation_id : Aws.BaseTypes.String.t option;
  5. hourly_price : Aws.BaseTypes.String.t option;
  6. instance_family : Aws.BaseTypes.String.t option;
  7. payment_option : PaymentOption.t option;
  8. upfront_price : Aws.BaseTypes.String.t option;
}
val make : ?currency_code:CurrencyCodeValues.t -> ?duration:Aws.BaseTypes.Integer.t -> ?host_id_set:ResponseHostIdSet.t -> ?host_reservation_id:Aws.BaseTypes.String.t -> ?hourly_price:Aws.BaseTypes.String.t -> ?instance_family:Aws.BaseTypes.String.t -> ?payment_option:PaymentOption.t -> ?upfront_price:Aws.BaseTypes.String.t -> unit -> t
val parse : Ezxmlm.nodes -> t option
val to_query : t -> Aws.Query.t
val to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
val of_json : Aws.Json.t -> t