Values.RdsRequirementsSourceProvides information that describes the requirements to the target engine on Amazon RDS.
type nonrec t = {engineEdition : String_.t option;The required target Amazon RDS engine edition.
*)instanceVcpu : DoubleOptional.t option;The required number of virtual CPUs (vCPU) on the Amazon RDS DB instance.
*)instanceMemory : DoubleOptional.t option;The required memory on the Amazon RDS DB instance.
*)storageSize : IntegerOptional.t option;The required Amazon RDS DB instance storage size.
*)storageIops : IntegerOptional.t option;The required number of I/O operations completed each second (IOPS) on your Amazon RDS DB instance.
*)deploymentOption : String_.t option;The required deployment option for the Amazon RDS DB instance. Valid values include "MULTI_AZ" for Multi-AZ deployments and "SINGLE_AZ" for Single-AZ deployments.
*)engineVersion : String_.t option;The required target Amazon RDS engine version.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Double of DoubleOptional.t
| `Integer of IntegerOptional.t
| `String of String_.t ])
list ]