import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { RebootBrokerRequest, RebootBrokerResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link RebootBrokerCommand}. */ export interface RebootBrokerCommandInput extends RebootBrokerRequest { } /** * @public * * The output of {@link RebootBrokerCommand}. */ export interface RebootBrokerCommandOutput extends RebootBrokerResponse, __MetadataBearer { } declare const RebootBrokerCommand_base: { new (input: RebootBrokerCommandInput): import("@smithy/core/client").CommandImpl; new (input: RebootBrokerCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Reboots a broker. Note: This API is asynchronous.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { MqClient, RebootBrokerCommand } from "@aws-sdk/client-mq"; // ES Modules import * // const { MqClient, RebootBrokerCommand } = 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 = { // RebootBrokerRequest * BrokerId: "STRING_VALUE", // required * }; * const command = new RebootBrokerCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param RebootBrokerCommandInput - {@link RebootBrokerCommandInput} * @returns {@link RebootBrokerCommandOutput} * @see {@link RebootBrokerCommandInput} for command's `input` shape. * @see {@link RebootBrokerCommandOutput} 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 NotFoundException} (client fault) *

Returns information about an error.

* * @throws {@link MqServiceException} *

Base exception class for all service exceptions from Mq service.

* * * @public */ export declare class RebootBrokerCommand extends RebootBrokerCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: RebootBrokerRequest; output: {}; }; sdk: { input: RebootBrokerCommandInput; output: RebootBrokerCommandOutput; }; }; }