Module Values.EBSOptionsSource

Options to enable, disable, and specify the properties of EBS storage volumes. For more information, see Configuring EBS-based Storage.

Sourcetype nonrec t = {
  1. eBSEnabled : Boolean.t option;
    (*

    Specifies whether EBS-based storage is enabled.

    *)
  2. volumeType : VolumeType.t option;
    (*

    Specifies the volume type for EBS-based storage.

    *)
  3. volumeSize : IntegerClass.t option;
    (*

    Integer to specify the size of an EBS volume.

    *)
  4. iops : IntegerClass.t option;
    (*

    Specifies the IOPS for Provisioned IOPS And GP3 EBS volume (SSD).

    *)
  5. throughput : IntegerClass.t option;
    (*

    Specifies the Throughput for GP3 EBS volume (SSD).

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