import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as pulumiAws from "@pulumi/aws"; import * as pulumiRandom from "@pulumi/random"; export declare class AuroraMysql extends pulumi.ComponentResource { /** * Returns true if the given object is an instance of AuroraMysql. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is AuroraMysql; /** * CloudWatch alarms that monitor the RDS Cluter */ readonly alarms: pulumi.Output; /** * The RDS Cluster */ readonly cluster: pulumi.Output; /** * Cluster instances associated to the cluster */ readonly instances: pulumi.Output; /** * Random password generated for admin user */ readonly password: pulumi.Output; /** * Component that protects and stores admin password in AWS */ readonly secret: pulumi.Output; /** * Component that protects and stores admin password in AWS */ readonly secretVersion: pulumi.Output; /** * The SecurityGroup associated to the cluster to manage traffic */ readonly securityGroup: pulumi.Output; /** * The rules associated SecurityGroup to allow incoming traffic */ readonly securityGroupRule: pulumi.Output; /** * The SubnetGroup that reprents the list of subnets where the cluster is deployed */ readonly subnetGroup: pulumi.Output; /** * SNS Topic used for CloudWatch alerts */ readonly topic: pulumi.Output; /** * TopicSubscriptions to alerts by email */ readonly topicSubscriptions: pulumi.Output; /** * Create a AuroraMysql resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: AuroraMysqlArgs, opts?: pulumi.ComponentResourceOptions); } /** * The set of arguments for constructing a AuroraMysql resource. */ export interface AuroraMysqlArgs { /** * Backup configuration parameters for Aurora cluster */ backup?: pulumi.Input; /** * Configuration parameters for the database */ database?: pulumi.Input; /** * The instance type for the cluster */ instanceType?: pulumi.Input; /** * The number of instances to be created for Aurora cluster */ instancesCount?: pulumi.Input; /** * Logging configuration parameters for Aurora cluster */ logging?: pulumi.Input; /** * Monitoring configuration parameters for Aurora cluster */ monitoring?: pulumi.Input; /** * Networking configuration parameters for Aurora cluster */ networking?: pulumi.Input; /** * Version for database */ version?: pulumi.Input; }