import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListKxClusterNodesRequest, ListKxClusterNodesResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListKxClusterNodesCommand}. */ export interface ListKxClusterNodesCommandInput extends ListKxClusterNodesRequest { } /** * @public * * The output of {@link ListKxClusterNodesCommand}. */ export interface ListKxClusterNodesCommandOutput extends ListKxClusterNodesResponse, __MetadataBearer { } declare const ListKxClusterNodesCommand_base: { new (input: ListKxClusterNodesCommandInput): import("@smithy/core/client").CommandImpl; new (input: ListKxClusterNodesCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists all the nodes in a kdb cluster.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { FinspaceClient, ListKxClusterNodesCommand } from "@aws-sdk/client-finspace"; // ES Modules import * // const { FinspaceClient, ListKxClusterNodesCommand } = 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 = { // ListKxClusterNodesRequest * environmentId: "STRING_VALUE", // required * clusterName: "STRING_VALUE", // required * nextToken: "STRING_VALUE", * maxResults: Number("int"), * }; * const command = new ListKxClusterNodesCommand(input); * const response = await client.send(command); * // { // ListKxClusterNodesResponse * // nodes: [ // KxNodeSummaries * // { // KxNode * // nodeId: "STRING_VALUE", * // availabilityZoneId: "STRING_VALUE", * // launchTime: new Date("TIMESTAMP"), * // status: "RUNNING" || "PROVISIONING", * // }, * // ], * // nextToken: "STRING_VALUE", * // }; * * ``` * * @param ListKxClusterNodesCommandInput - {@link ListKxClusterNodesCommandInput} * @returns {@link ListKxClusterNodesCommandOutput} * @see {@link ListKxClusterNodesCommandInput} for command's `input` shape. * @see {@link ListKxClusterNodesCommandOutput} 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 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 ListKxClusterNodesCommand extends ListKxClusterNodesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListKxClusterNodesRequest; output: ListKxClusterNodesResponse; }; sdk: { input: ListKxClusterNodesCommandInput; output: ListKxClusterNodesCommandOutput; }; }; }