Values.RdsConfigurationSourceProvides information that describes the configuration of the recommended target engine on Amazon RDS.
type nonrec t = {engineEdition : String_.t option;Describes the recommended target Amazon RDS engine edition.
*)instanceType : String_.t option;Describes the recommended target Amazon RDS instance type.
*)instanceVcpu : DoubleOptional.t option;Describes the number of virtual CPUs (vCPU) on the recommended Amazon RDS DB instance that meets your requirements.
*)instanceMemory : DoubleOptional.t option;Describes the memory on the recommended Amazon RDS DB instance that meets your requirements.
*)storageType : String_.t option;Describes the storage type of the recommended Amazon RDS DB instance that meets your requirements. Amazon RDS provides three storage types: General Purpose SSD (also known as gp2 and gp3), Provisioned IOPS SSD (also known as io1), and magnetic (also known as standard).
*)storageSize : IntegerOptional.t option;Describes the storage size of the recommended Amazon RDS DB instance that meets your requirements.
*)storageIops : IntegerOptional.t option;Describes the number of I/O operations completed each second (IOPS) on the recommended Amazon RDS DB instance that meets your requirements.
*)deploymentOption : String_.t option;Describes the deployment option for the recommended Amazon RDS DB instance. The deployment options include Multi-AZ and Single-AZ deployments. Valid values include "MULTI_AZ" and "SINGLE_AZ".
*)engineVersion : String_.t option;Describes the recommended 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 ]