UNPKG

@cloudtoolkit/aws

Version:

The Cloud Toolkit AWS provider for Pulumi provision well-architected solutions in [AWS](https://aws.amazon.com/). With Cloud Toolkit AWS you can use your preferred programming language to manage your platform with Infrastructure as Code.

18 lines (17 loc) 509 B
export declare const MysqlStorageType: { readonly Standard: "standard"; readonly Io1: "io1"; readonly Gp2: "gp2"; }; /** * Set of storage type classes for database instance */ export type MysqlStorageType = (typeof MysqlStorageType)[keyof typeof MysqlStorageType]; export declare const MysqlVersion: { readonly V8_0: "8.0"; readonly V5_7: "5.7"; }; /** * Set of allowed versions for the database instance */ export type MysqlVersion = (typeof MysqlVersion)[keyof typeof MysqlVersion];