import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * The AWS::Timestream::InfluxDBCluster resource creates an InfluxDB cluster. */ export declare class InfluxDbCluster extends pulumi.CustomResource { /** * Get an existing InfluxDbCluster resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): InfluxDbCluster; /** * Returns true if the given object is an instance of InfluxDbCluster. 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 InfluxDbCluster; /** * The allocated storage for the InfluxDB cluster. */ readonly allocatedStorage: pulumi.Output; /** * The Amazon Resource Name (ARN) that is associated with the InfluxDB cluster. */ readonly arn: pulumi.Output; /** * The service generated unique identifier for InfluxDB cluster. */ readonly awsId: pulumi.Output; /** * The bucket for the InfluxDB cluster. */ readonly bucket: pulumi.Output; /** * The compute instance of the InfluxDB cluster. */ readonly dbInstanceType: pulumi.Output; /** * The name of an existing InfluxDB parameter group. */ readonly dbParameterGroupIdentifier: pulumi.Output; /** * The storage type of the InfluxDB cluster. */ readonly dbStorageType: pulumi.Output; /** * Deployment type of the InfluxDB cluster. */ readonly deploymentType: pulumi.Output; /** * The connection endpoint for the InfluxDB cluster. */ readonly endpoint: pulumi.Output; /** * The engine type for the InfluxDB cluster. */ readonly engineType: pulumi.Output; /** * Failover mode of the InfluxDB cluster. */ readonly failoverMode: pulumi.Output; /** * The Auth parameters secret Amazon Resource name (ARN) that is associated with the InfluxDB cluster. */ readonly influxAuthParametersSecretArn: pulumi.Output; /** * Configuration for sending logs to customer account from the InfluxDB cluster. */ readonly logDeliveryConfiguration: pulumi.Output; /** * The unique name that is associated with the InfluxDB cluster. */ readonly name: pulumi.Output; /** * Network type of the InfluxDB cluster. */ readonly networkType: pulumi.Output; /** * The organization for the InfluxDB cluster. */ readonly organization: pulumi.Output; /** * The password for the InfluxDB cluster. */ readonly password: pulumi.Output; /** * The port number on which InfluxDB accepts connections. */ readonly port: pulumi.Output; /** * Attach a public IP to the customer ENI. */ readonly publiclyAccessible: pulumi.Output; /** * The reader endpoint for the InfluxDB cluster. */ readonly readerEndpoint: pulumi.Output; /** * Status of the InfluxDB cluster. */ readonly status: pulumi.Output; /** * An arbitrary set of tags (key-value pairs) for this DB cluster. */ readonly tags: pulumi.Output; /** * The username for the InfluxDB cluster. */ readonly username: pulumi.Output; /** * A list of Amazon EC2 VPC security groups to associate with this InfluxDB cluster. */ readonly vpcSecurityGroupIds: pulumi.Output; /** * A list of EC2 subnet IDs for this InfluxDB cluster. */ readonly vpcSubnetIds: pulumi.Output; /** * Create a InfluxDbCluster 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?: InfluxDbClusterArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a InfluxDbCluster resource. */ export interface InfluxDbClusterArgs { /** * The allocated storage for the InfluxDB cluster. */ allocatedStorage?: pulumi.Input; /** * The bucket for the InfluxDB cluster. */ bucket?: pulumi.Input; /** * The compute instance of the InfluxDB cluster. */ dbInstanceType?: pulumi.Input; /** * The name of an existing InfluxDB parameter group. */ dbParameterGroupIdentifier?: pulumi.Input; /** * The storage type of the InfluxDB cluster. */ dbStorageType?: pulumi.Input; /** * Deployment type of the InfluxDB cluster. */ deploymentType?: pulumi.Input; /** * Failover mode of the InfluxDB cluster. */ failoverMode?: pulumi.Input; /** * Configuration for sending logs to customer account from the InfluxDB cluster. */ logDeliveryConfiguration?: pulumi.Input; /** * The unique name that is associated with the InfluxDB cluster. */ name?: pulumi.Input; /** * Network type of the InfluxDB cluster. */ networkType?: pulumi.Input; /** * The organization for the InfluxDB cluster. */ organization?: pulumi.Input; /** * The password for the InfluxDB cluster. */ password?: pulumi.Input; /** * The port number on which InfluxDB accepts connections. */ port?: pulumi.Input; /** * Attach a public IP to the customer ENI. */ publiclyAccessible?: pulumi.Input; /** * An arbitrary set of tags (key-value pairs) for this DB cluster. */ tags?: pulumi.Input[]>; /** * The username for the InfluxDB cluster. */ username?: pulumi.Input; /** * A list of Amazon EC2 VPC security groups to associate with this InfluxDB cluster. */ vpcSecurityGroupIds?: pulumi.Input[]>; /** * A list of EC2 subnet IDs for this InfluxDB cluster. */ vpcSubnetIds?: pulumi.Input[]>; }