import * as pulumi from "@pulumi/pulumi"; import * as enums from "../../types/enums"; export interface AuroraMysqlBackupArgs { /** * Time window in which backups should be taken */ preferredWindow?: pulumi.Input; /** * Retention days for backups */ retentionDays?: pulumi.Input; } export interface AuroraMysqlDatabaseArgs { /** * The name of the database to create when the DB instance is created */ name?: pulumi.Input; /** * Password length to login in the database */ passwordLength?: pulumi.Input; /** * Username for database admin user */ username?: pulumi.Input; } export interface AuroraMysqlLoggingArgs { /** * Enable audit logging */ audit?: pulumi.Input; /** * Enable error logging */ error?: pulumi.Input; /** * Enable general logging */ general?: pulumi.Input; /** * Enable slowquery logging */ slowquery?: pulumi.Input; } export interface AuroraMysqlMonitoringArgs { /** * Emails that will receive the alerts */ emails?: pulumi.Input[]>; /** * Enable cluster alerting with CloudWatch */ enabled?: pulumi.Input; } export interface AuroraMysqlNetworkingArgs { /** * Allow traffic from Internet */ allowInternet?: pulumi.Input; /** * Allowed CIDRs that connect to the cluster */ allowedCidr?: pulumi.Input[]>; /** * Subnets belonging to a Virtual Private Cloud where cluster must be deployed */ subnetIds?: pulumi.Input[]>; /** * Virtual Private Cloud where instances must be deployed */ vpc?: pulumi.Input; } export interface MysqlBackupArgs { /** * Time window in which backups should be taken */ preferredWindow?: pulumi.Input; /** * Retention days for backups */ retentionDays?: pulumi.Input; } export interface MysqlDatabaseArgs { /** * The name of the database to create when the DB instance is created */ name: pulumi.Input; /** * Password length to login in the database instance */ passwordLength?: pulumi.Input; /** * Username for database admin user */ username: pulumi.Input; } export interface MysqlNetworkingArgs { /** * Allowed CIDRs that connect to the database instance */ allowedCidr?: pulumi.Input[]>; /** * Subnets belonging to a Virtual Private Cloud where database instance must be deployed */ subnetIds?: pulumi.Input[]>; /** * Virtual Private Cloud where database instance must be deployed */ vpc?: pulumi.Input; } export interface MysqlStorageArgs { /** * Storage size allocated for database instance */ size?: pulumi.Input; /** * Storage type class for database instance */ type?: pulumi.Input; }