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. hourly_price : Aws.BaseTypes.String.t option;
  4. instance_family : Aws.BaseTypes.String.t option;
  5. offering_id : Aws.BaseTypes.String.t option;
  6. payment_option : PaymentOption.t option;
  7. upfront_price : Aws.BaseTypes.String.t option;
}
val make : ?currency_code:CurrencyCodeValues.t -> ?duration:Aws.BaseTypes.Integer.t -> ?hourly_price:Aws.BaseTypes.String.t -> ?instance_family:Aws.BaseTypes.String.t -> ?offering_id: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