Module Values.Ec2EbsVolumeSource

Specifies the EBS volume.

Sourcetype nonrec t = {
  1. sizeGiB : Integer.t option;
    (*

    The EBS volume size in GiB.

    *)
  2. iops : EbsIops.t option;
    (*

    The IOPS per volume.

    *)
  3. throughputMiB : EbsThroughputMiB.t option;
    (*

    The throughput per volume in MiB.

    *)
}
Sourceval make : ?sizeGiB:??? -> ?iops:??? -> ?throughputMiB:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t ]) 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