Values.EbsInstanceBlockDeviceSpecificationSourceAmazon EBS-specific block device mapping specifications.
type nonrec t = {encrypted : NullableBoolean.t option;Use to configure device encryption.
*)deleteOnTermination : NullableBoolean.t option;Use to configure delete on termination of the associated device.
*)iops : EbsIopsInteger.t option;Use to configure device IOPS.
*)kmsKeyId : NonEmptyString.t option;The Amazon Resource Name (ARN) that uniquely identifies the KMS key to use when encrypting the device. This can be either the Key ARN or the Alias ARN. For more information, see Key identifiers (KeyId) in the Key Management Service Developer Guide.
*)snapshotId : NonEmptyString.t option;The snapshot that defines the device contents.
*)volumeSize : EbsVolumeSizeInteger.t option;Use to override the device's volume size.
*)volumeType : EbsVolumeType.t option;Use to override the device's volume type.
*)throughput : EbsVolumeThroughput.t option;For GP3 volumes only – The throughput in MiB/s that the volume supports.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of NullableBoolean.t
| `Enum of string
| `Integer of EbsIopsInteger.t
| `String of NonEmptyString.t ])
list ]