import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeBrokerInstanceOptionsRequest, DescribeBrokerInstanceOptionsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeBrokerInstanceOptionsCommand}. */ export interface DescribeBrokerInstanceOptionsCommandInput extends DescribeBrokerInstanceOptionsRequest { } /** * @public * * The output of {@link DescribeBrokerInstanceOptionsCommand}. */ export interface DescribeBrokerInstanceOptionsCommandOutput extends DescribeBrokerInstanceOptionsResponse, __MetadataBearer { } declare const DescribeBrokerInstanceOptionsCommand_base: { new (input: DescribeBrokerInstanceOptionsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [DescribeBrokerInstanceOptionsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Describe available broker instance options.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { MqClient, DescribeBrokerInstanceOptionsCommand } from "@aws-sdk/client-mq"; // ES Modules import * // const { MqClient, DescribeBrokerInstanceOptionsCommand } = require("@aws-sdk/client-mq"); // CommonJS import * // import type { MqClientConfig } from "@aws-sdk/client-mq"; * const config = {}; // type is MqClientConfig * const client = new MqClient(config); * const input = { // DescribeBrokerInstanceOptionsRequest * EngineType: "STRING_VALUE", * HostInstanceType: "STRING_VALUE", * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * StorageType: "STRING_VALUE", * }; * const command = new DescribeBrokerInstanceOptionsCommand(input); * const response = await client.send(command); * // { // DescribeBrokerInstanceOptionsResponse * // BrokerInstanceOptions: [ // __listOfBrokerInstanceOption * // { // BrokerInstanceOption * // AvailabilityZones: [ // __listOfAvailabilityZone * // { // AvailabilityZone * // Name: "STRING_VALUE", * // }, * // ], * // EngineType: "ACTIVEMQ" || "RABBITMQ", * // HostInstanceType: "STRING_VALUE", * // StorageType: "EBS" || "EFS", * // SupportedDeploymentModes: [ // __listOfDeploymentMode * // "SINGLE_INSTANCE" || "ACTIVE_STANDBY_MULTI_AZ" || "CLUSTER_MULTI_AZ", * // ], * // SupportedEngineVersions: [ // __listOf__string * // "STRING_VALUE", * // ], * // }, * // ], * // MaxResults: Number("int"), * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param DescribeBrokerInstanceOptionsCommandInput - {@link DescribeBrokerInstanceOptionsCommandInput} * @returns {@link DescribeBrokerInstanceOptionsCommandOutput} * @see {@link DescribeBrokerInstanceOptionsCommandInput} for command's `input` shape. * @see {@link DescribeBrokerInstanceOptionsCommandOutput} for command's `response` shape. * @see {@link MqClientResolvedConfig | config} for MqClient's `config` shape. * * @throws {@link BadRequestException} (client fault) *

Returns information about an error.

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

Returns information about an error.

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

Returns information about an error.

* * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* * * @public */ export declare class DescribeBrokerInstanceOptionsCommand extends DescribeBrokerInstanceOptionsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeBrokerInstanceOptionsRequest; output: DescribeBrokerInstanceOptionsResponse; }; sdk: { input: DescribeBrokerInstanceOptionsCommandInput; output: DescribeBrokerInstanceOptionsCommandOutput; }; }; }