package aws-rds

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. storage_type : Aws.BaseTypes.String.t option;
  2. storage_size : RangeList.t;
  3. provisioned_iops : RangeList.t;
  4. iops_to_storage_ratio : DoubleRangeList.t;
  5. supports_storage_autoscaling : Aws.BaseTypes.Boolean.t option;
}
val make : ?storage_type:Aws.BaseTypes.String.t -> ?storage_size:RangeList.t -> ?provisioned_iops:RangeList.t -> ?iops_to_storage_ratio:DoubleRangeList.t -> ?supports_storage_autoscaling:Aws.BaseTypes.Boolean.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