import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListKxClustersRequest, ListKxClustersResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListKxClustersCommand}. */ export interface ListKxClustersCommandInput extends ListKxClustersRequest { } /** * @public * * The output of {@link ListKxClustersCommand}. */ export interface ListKxClustersCommandOutput extends ListKxClustersResponse, __MetadataBearer { } declare const ListKxClustersCommand_base: { new (input: ListKxClustersCommandInput): import("@smithy/core/client").CommandImpl; new (input: ListKxClustersCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns a list of clusters.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { FinspaceClient, ListKxClustersCommand } from "@aws-sdk/client-finspace"; // ES Modules import * // const { FinspaceClient, ListKxClustersCommand } = require("@aws-sdk/client-finspace"); // CommonJS import * // import type { FinspaceClientConfig } from "@aws-sdk/client-finspace"; * const config = {}; // type is FinspaceClientConfig * const client = new FinspaceClient(config); * const input = { // ListKxClustersRequest * environmentId: "STRING_VALUE", // required * clusterType: "HDB" || "RDB" || "GATEWAY" || "GP" || "TICKERPLANT", * maxResults: Number("int"), * nextToken: "STRING_VALUE", * }; * const command = new ListKxClustersCommand(input); * const response = await client.send(command); * // { // ListKxClustersResponse * // kxClusterSummaries: [ // KxClusters * // { // KxCluster * // status: "PENDING" || "CREATING" || "CREATE_FAILED" || "RUNNING" || "UPDATING" || "DELETING" || "DELETED" || "DELETE_FAILED", * // statusReason: "STRING_VALUE", * // clusterName: "STRING_VALUE", * // clusterType: "HDB" || "RDB" || "GATEWAY" || "GP" || "TICKERPLANT", * // clusterDescription: "STRING_VALUE", * // releaseLabel: "STRING_VALUE", * // volumes: [ // Volumes * // { // Volume * // volumeName: "STRING_VALUE", * // volumeType: "NAS_1", * // }, * // ], * // initializationScript: "STRING_VALUE", * // executionRole: "STRING_VALUE", * // azMode: "SINGLE" || "MULTI", * // availabilityZoneId: "STRING_VALUE", * // lastModifiedTimestamp: new Date("TIMESTAMP"), * // createdTimestamp: new Date("TIMESTAMP"), * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListKxClustersCommandInput - {@link ListKxClustersCommandInput} * @returns {@link ListKxClustersCommandOutput} * @see {@link ListKxClustersCommandInput} for command's `input` shape. * @see {@link ListKxClustersCommandOutput} for command's `response` shape. * @see {@link FinspaceClientResolvedConfig | config} for FinspaceClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You do not have sufficient access to perform this action.

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

There was a conflict with this action, and it could not be completed.

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

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

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

A service limit or quota is exceeded.

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

One or more resources can't be found.

* * @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 an AWS service.

* * @throws {@link FinspaceServiceException} *

Base exception class for all service exceptions from Finspace service.

* * * @public */ export declare class ListKxClustersCommand extends ListKxClustersCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListKxClustersRequest; output: ListKxClustersResponse; }; sdk: { input: ListKxClustersCommandInput; output: ListKxClustersCommandOutput; }; }; }