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::InfluxDBInstance resource creates an InfluxDB instance. */ export declare class InfluxDbInstance extends pulumi.CustomResource { /** * Get an existing InfluxDbInstance 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): InfluxDbInstance; /** * Returns true if the given object is an instance of InfluxDbInstance. 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 InfluxDbInstance; /** * The allocated storage for the InfluxDB instance. */ readonly allocatedStorage: pulumi.Output; /** * The Amazon Resource Name (ARN) that is associated with the InfluxDB instance. */ readonly arn: pulumi.Output; /** * The Availability Zone (AZ) where the InfluxDB instance is created. */ readonly availabilityZone: pulumi.Output; /** * The service generated unique identifier for InfluxDB instance. */ readonly awsId: pulumi.Output; /** * The bucket for the InfluxDB instance. */ readonly bucket: pulumi.Output; /** * The compute instance of the InfluxDB instance. */ readonly dbInstanceType: pulumi.Output; /** * The name of an existing InfluxDB parameter group. */ readonly dbParameterGroupIdentifier: pulumi.Output; /** * The storage type of the InfluxDB instance. */ readonly dbStorageType: pulumi.Output; /** * Deployment type of the InfluxDB Instance. */ readonly deploymentType: pulumi.Output; /** * The connection endpoint for the InfluxDB instance. */ readonly endpoint: pulumi.Output; /** * The Auth parameters secret Amazon Resource name (ARN) that is associated with the InfluxDB instance. */ readonly influxAuthParametersSecretArn: pulumi.Output; /** * Configuration for sending logs to customer account from the InfluxDB instance. */ readonly logDeliveryConfiguration: pulumi.Output; /** * The unique name that is associated with the InfluxDB instance. */ readonly name: pulumi.Output; /** * Network type of the InfluxDB Instance. */ readonly networkType: pulumi.Output; /** * The organization for the InfluxDB instance. */ readonly organization: pulumi.Output; /** * The password for the InfluxDB instance. */ 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 Secondary Availability Zone (AZ) where the InfluxDB instance is created, if DeploymentType is set as WITH_MULTIAZ_STANDBY. */ readonly secondaryAvailabilityZone: pulumi.Output; /** * Status of the InfluxDB Instance. */ readonly status: pulumi.Output; /** * An arbitrary set of tags (key-value pairs) for this DB instance. */ readonly tags: pulumi.Output; /** * The username for the InfluxDB instance. */ readonly username: pulumi.Output; /** * A list of Amazon EC2 VPC security groups to associate with this InfluxDB instance. */ readonly vpcSecurityGroupIds: pulumi.Output; /** * A list of EC2 subnet IDs for this InfluxDB instance. */ readonly vpcSubnetIds: pulumi.Output; /** * Create a InfluxDbInstance 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?: InfluxDbInstanceArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a InfluxDbInstance resource. */ export interface InfluxDbInstanceArgs { /** * The allocated storage for the InfluxDB instance. */ allocatedStorage?: pulumi.Input; /** * The bucket for the InfluxDB instance. */ bucket?: pulumi.Input; /** * The compute instance of the InfluxDB instance. */ dbInstanceType?: pulumi.Input; /** * The name of an existing InfluxDB parameter group. */ dbParameterGroupIdentifier?: pulumi.Input; /** * The storage type of the InfluxDB instance. */ dbStorageType?: pulumi.Input; /** * Deployment type of the InfluxDB Instance. */ deploymentType?: pulumi.Input; /** * Configuration for sending logs to customer account from the InfluxDB instance. */ logDeliveryConfiguration?: pulumi.Input; /** * The unique name that is associated with the InfluxDB instance. */ name?: pulumi.Input; /** * Network type of the InfluxDB Instance. */ networkType?: pulumi.Input; /** * The organization for the InfluxDB instance. */ organization?: pulumi.Input; /** * The password for the InfluxDB instance. */ 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 instance. */ tags?: pulumi.Input[]>; /** * The username for the InfluxDB instance. */ username?: pulumi.Input; /** * A list of Amazon EC2 VPC security groups to associate with this InfluxDB instance. */ vpcSecurityGroupIds?: pulumi.Input[]>; /** * A list of EC2 subnet IDs for this InfluxDB instance. */ vpcSubnetIds?: pulumi.Input[]>; }