import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListDbClustersInput, ListDbClustersOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListDbClustersCommand}. */ export interface ListDbClustersCommandInput extends ListDbClustersInput { } /** * @public * * The output of {@link ListDbClustersCommand}. */ export interface ListDbClustersCommandOutput extends ListDbClustersOutput, __MetadataBearer { } declare const ListDbClustersCommand_base: { new (input: ListDbClustersCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListDbClustersCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns a list of Timestream for InfluxDB DB clusters.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { TimestreamInfluxDBClient, ListDbClustersCommand } from "@aws-sdk/client-timestream-influxdb"; // ES Modules import * // const { TimestreamInfluxDBClient, ListDbClustersCommand } = require("@aws-sdk/client-timestream-influxdb"); // CommonJS import * // import type { TimestreamInfluxDBClientConfig } from "@aws-sdk/client-timestream-influxdb"; * const config = {}; // type is TimestreamInfluxDBClientConfig * const client = new TimestreamInfluxDBClient(config); * const input = { // ListDbClustersInput * nextToken: "STRING_VALUE", * maxResults: Number("int"), * }; * const command = new ListDbClustersCommand(input); * const response = await client.send(command); * // { // ListDbClustersOutput * // items: [ // DbClusterSummaryList // required * // { // DbClusterSummary * // id: "STRING_VALUE", // required * // name: "STRING_VALUE", // required * // arn: "STRING_VALUE", // required * // status: "CREATING" || "UPDATING" || "DELETING" || "AVAILABLE" || "FAILED" || "DELETED" || "MAINTENANCE" || "UPDATING_INSTANCE_TYPE" || "REBOOTING" || "REBOOT_FAILED" || "PARTIALLY_AVAILABLE" || "RESTORING" || "RESTORE_FAILED", * // endpoint: "STRING_VALUE", * // readerEndpoint: "STRING_VALUE", * // port: Number("int"), * // deploymentType: "MULTI_NODE_READ_REPLICAS", * // dbInstanceType: "db.influx.medium" || "db.influx.large" || "db.influx.xlarge" || "db.influx.2xlarge" || "db.influx.4xlarge" || "db.influx.8xlarge" || "db.influx.12xlarge" || "db.influx.16xlarge" || "db.influx.24xlarge", * // networkType: "IPV4" || "DUAL", * // dbStorageType: "InfluxIOIncludedT1" || "InfluxIOIncludedT2" || "InfluxIOIncludedT3", * // allocatedStorage: Number("int"), * // engineType: "INFLUXDB_V2" || "INFLUXDB_V3_CORE" || "INFLUXDB_V3_ENTERPRISE", * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListDbClustersCommandInput - {@link ListDbClustersCommandInput} * @returns {@link ListDbClustersCommandOutput} * @see {@link ListDbClustersCommandInput} for command's `input` shape. * @see {@link ListDbClustersCommandOutput} for command's `response` shape. * @see {@link TimestreamInfluxDBClientResolvedConfig | config} for TimestreamInfluxDBClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You do not have sufficient access to perform this action.

* * @throws {@link InternalServerException} (server fault) *

The request processing has failed because of an unknown error, exception or failure.

* * @throws {@link ResourceNotFoundException} (client fault) *

The requested resource was not found or does not exist.

* * @throws {@link ThrottlingException} (client fault) *

The request was denied due to request throttling.

* * @throws {@link ValidationException} (client fault) *

The input fails to satisfy the constraints specified by Timestream for InfluxDB.

* * @throws {@link TimestreamInfluxDBServiceException} *

Base exception class for all service exceptions from TimestreamInfluxDB service.

* * * @public */ export declare class ListDbClustersCommand extends ListDbClustersCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListDbClustersInput; output: ListDbClustersOutput; }; sdk: { input: ListDbClustersCommandInput; output: ListDbClustersCommandOutput; }; }; }