import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
 * The AWS::Timestream::InfluxDBCluster resource creates an InfluxDB cluster.
 */
export declare function getInfluxDbCluster(args: GetInfluxDbClusterArgs, opts?: pulumi.InvokeOptions): Promise<GetInfluxDbClusterResult>;
export interface GetInfluxDbClusterArgs {
    /**
     * The service generated unique identifier for InfluxDB cluster.
     */
    id: string;
}
export interface GetInfluxDbClusterResult {
    /**
     * The Amazon Resource Name (ARN) that is associated with the InfluxDB cluster.
     */
    readonly arn?: string;
    /**
     * The compute instance of the InfluxDB cluster.
     */
    readonly dbInstanceType?: enums.timestream.InfluxDbClusterDbInstanceType;
    /**
     * The name of an existing InfluxDB parameter group.
     */
    readonly dbParameterGroupIdentifier?: string;
    /**
     * The connection endpoint for the InfluxDB cluster.
     */
    readonly endpoint?: string;
    /**
     * The engine type for the InfluxDB cluster.
     */
    readonly engineType?: enums.timestream.InfluxDbClusterEngineType;
    /**
     * Failover mode of the InfluxDB cluster.
     */
    readonly failoverMode?: enums.timestream.InfluxDbClusterFailoverMode;
    /**
     * The service generated unique identifier for InfluxDB cluster.
     */
    readonly id?: string;
    /**
     * The Auth parameters secret Amazon Resource name (ARN) that is associated with the InfluxDB cluster.
     */
    readonly influxAuthParametersSecretArn?: string;
    /**
     * Configuration for sending logs to customer account from the InfluxDB cluster.
     */
    readonly logDeliveryConfiguration?: outputs.timestream.LogDeliveryConfigurationProperties;
    /**
     * The maintenance schedule for the InfluxDB cluster.
     */
    readonly maintenanceSchedule?: outputs.timestream.InfluxDbClusterMaintenanceSchedule;
    /**
     * The timestamp of the next scheduled maintenance event.
     */
    readonly nextMaintenanceTime?: string;
    /**
     * The port number on which InfluxDB accepts connections.
     */
    readonly port?: number;
    /**
     * The reader endpoint for the InfluxDB cluster.
     */
    readonly readerEndpoint?: string;
    /**
     * Status of the InfluxDB cluster.
     */
    readonly status?: enums.timestream.InfluxDbClusterStatus;
    /**
     * An arbitrary set of tags (key-value pairs) for this DB cluster.
     */
    readonly tags?: outputs.Tag[];
}
/**
 * The AWS::Timestream::InfluxDBCluster resource creates an InfluxDB cluster.
 */
export declare function getInfluxDbClusterOutput(args: GetInfluxDbClusterOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetInfluxDbClusterResult>;
export interface GetInfluxDbClusterOutputArgs {
    /**
     * The service generated unique identifier for InfluxDB cluster.
     */
    id: pulumi.Input<string>;
}
