Values.VolumeConfigurationSourceDescribes the configuration of an Amazon Elastic Block Store (Amazon EBS) volume.
type nonrec t = {volumeType : VolumeType.t option;The volume type. The volume types can be the following: General Purpose SSD gp2 and gp3 Provisioned IOPS SSD io1, io2, and io2 Block Express Throughput Optimized HDD st1 Cold HDD sc1 Magnetic volumes standard
*)volumeSize : VolumeSize.t option;The size of the volume, in GiB.
*)volumeBaselineIOPS : VolumeBaselineIOPS.t option;The baseline IOPS of the volume.
*)volumeBurstIOPS : VolumeBurstIOPS.t option;The burst IOPS of the volume.
*)volumeBaselineThroughput : VolumeBaselineThroughput.t option;The baseline throughput of the volume.
*)volumeBurstThroughput : VolumeBurstThroughput.t option;The burst throughput of the volume.
*)rootVolume : RootVolume.t option;Contains the image used to boot the instance during launch.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of RootVolume.t
| `Integer of VolumeSize.t
| `String of VolumeType.t ])
list ]