package aws-ec2

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. baseline_bandwidth_in_mbps : Aws.BaseTypes.Integer.t option;
  2. baseline_throughput_in_m_bps : Aws.BaseTypes.Double.t option;
  3. baseline_iops : Aws.BaseTypes.Integer.t option;
  4. maximum_bandwidth_in_mbps : Aws.BaseTypes.Integer.t option;
  5. maximum_throughput_in_m_bps : Aws.BaseTypes.Double.t option;
  6. maximum_iops : Aws.BaseTypes.Integer.t option;
}
val make : ?baseline_bandwidth_in_mbps:Aws.BaseTypes.Integer.t -> ?baseline_throughput_in_m_bps:Aws.BaseTypes.Double.t -> ?baseline_iops:Aws.BaseTypes.Integer.t -> ?maximum_bandwidth_in_mbps:Aws.BaseTypes.Integer.t -> ?maximum_throughput_in_m_bps:Aws.BaseTypes.Double.t -> ?maximum_iops:Aws.BaseTypes.Integer.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