Module Values.LaunchTemplateDiskConfSource

Launch template disk configuration.

Sourcetype nonrec t = {
  1. volumeType : VolumeType.t option;
    (*

    Launch template disk volume type configuration.

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

    Launch template disk iops configuration.

    *)
  3. throughput : Throughput.t option;
    (*

    Launch template disk throughput configuration.

    *)
}
Sourceval make : ?volumeType:??? -> ?iops:??? -> ?throughput:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Iops.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