Values_0.ScheduledInstancesEbsSourceDescribes an EBS volume for a Scheduled Instance.
type nonrec t = {deleteOnTermination : Boolean.t option;Indicates whether the volume is deleted on instance termination.
*)encrypted : Boolean.t option;Indicates whether the volume is encrypted. You can attached encrypted volumes only to instances that support them.
*)iops : Integer.t option;The number of I/O operations per second (IOPS) to provision for a gp3, io1, or io2 volume.
*)snapshotId : SnapshotId.t option;The ID of the snapshot.
*)volumeSize : Integer.t option;The size of the volume, in GiB. Default: If you're creating the volume from a snapshot and don't specify a volume size, the default is the snapshot size.
*)volumeType : String_.t option;The volume type. Default: gp2
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Integer of Integer.t
| `String of SnapshotId.t ])
list ]