import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeOrderableClusterOptionsMessage, OrderableClusterOptionsMessage } from "../models/models_0"; import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeOrderableClusterOptionsCommand}. */ export interface DescribeOrderableClusterOptionsCommandInput extends DescribeOrderableClusterOptionsMessage { } /** * @public * * The output of {@link DescribeOrderableClusterOptionsCommand}. */ export interface DescribeOrderableClusterOptionsCommandOutput extends OrderableClusterOptionsMessage, __MetadataBearer { } declare const DescribeOrderableClusterOptionsCommand_base: { new (input: DescribeOrderableClusterOptionsCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [DescribeOrderableClusterOptionsCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Returns a list of orderable cluster options. Before you create a new cluster you * can use this operation to find what options are available, such as the EC2 Availability * Zones (AZ) in the specific Amazon Web Services Region that you can specify, and the node types you can * request. The node types differ by available storage, memory, CPU and price. With the * cost involved you might want to obtain a list of cluster options in the specific region * and specify values when creating a cluster. * For more information about managing clusters, go to * Amazon Redshift Clusters * in the Amazon Redshift Cluster Management Guide.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { RedshiftClient, DescribeOrderableClusterOptionsCommand } from "@aws-sdk/client-redshift"; // ES Modules import * // const { RedshiftClient, DescribeOrderableClusterOptionsCommand } = require("@aws-sdk/client-redshift"); // CommonJS import * // import type { RedshiftClientConfig } from "@aws-sdk/client-redshift"; * const config = {}; // type is RedshiftClientConfig * const client = new RedshiftClient(config); * const input = { // DescribeOrderableClusterOptionsMessage * ClusterVersion: "STRING_VALUE", * NodeType: "STRING_VALUE", * MaxRecords: Number("int"), * Marker: "STRING_VALUE", * }; * const command = new DescribeOrderableClusterOptionsCommand(input); * const response = await client.send(command); * // { // OrderableClusterOptionsMessage * // OrderableClusterOptions: [ // OrderableClusterOptionsList * // { // OrderableClusterOption * // ClusterVersion: "STRING_VALUE", * // ClusterType: "STRING_VALUE", * // NodeType: "STRING_VALUE", * // AvailabilityZones: [ // AvailabilityZoneList * // { // AvailabilityZone * // Name: "STRING_VALUE", * // SupportedPlatforms: [ // SupportedPlatformsList * // { // SupportedPlatform * // Name: "STRING_VALUE", * // }, * // ], * // }, * // ], * // }, * // ], * // Marker: "STRING_VALUE", * // }; * * ``` * * @param DescribeOrderableClusterOptionsCommandInput - {@link DescribeOrderableClusterOptionsCommandInput} * @returns {@link DescribeOrderableClusterOptionsCommandOutput} * @see {@link DescribeOrderableClusterOptionsCommandInput} for command's `input` shape. * @see {@link DescribeOrderableClusterOptionsCommandOutput} for command's `response` shape. * @see {@link RedshiftClientResolvedConfig | config} for RedshiftClient's `config` shape. * * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* * * @public */ export declare class DescribeOrderableClusterOptionsCommand extends DescribeOrderableClusterOptionsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeOrderableClusterOptionsMessage; output: OrderableClusterOptionsMessage; }; sdk: { input: DescribeOrderableClusterOptionsCommandInput; output: DescribeOrderableClusterOptionsCommandOutput; }; }; }