import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListConfigurationsRequest, ListConfigurationsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListConfigurationsCommand}. */ export interface ListConfigurationsCommandInput extends ListConfigurationsRequest { } /** * @public * * The output of {@link ListConfigurationsCommand}. */ export interface ListConfigurationsCommandOutput extends ListConfigurationsResponse, __MetadataBearer { } declare const ListConfigurationsCommand_base: { new (input: ListConfigurationsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListConfigurationsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns a list of all configurations.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { MqClient, ListConfigurationsCommand } from "@aws-sdk/client-mq"; // ES Modules import * // const { MqClient, ListConfigurationsCommand } = 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 = { // ListConfigurationsRequest * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new ListConfigurationsCommand(input); * const response = await client.send(command); * // { // ListConfigurationsResponse * // Configurations: [ // __listOfConfiguration * // { // Configuration * // Arn: "STRING_VALUE", // required * // AuthenticationStrategy: "SIMPLE" || "LDAP" || "CONFIG_MANAGED", // required * // Created: new Date("TIMESTAMP"), // required * // Description: "STRING_VALUE", // required * // EngineType: "ACTIVEMQ" || "RABBITMQ", // required * // EngineVersion: "STRING_VALUE", // required * // Id: "STRING_VALUE", // required * // LatestRevision: { // ConfigurationRevision * // Created: new Date("TIMESTAMP"), // required * // Description: "STRING_VALUE", * // Revision: Number("int"), // required * // }, * // Name: "STRING_VALUE", // required * // Tags: { // __mapOf__string * // "": "STRING_VALUE", * // }, * // }, * // ], * // MaxResults: Number("int"), * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListConfigurationsCommandInput - {@link ListConfigurationsCommandInput} * @returns {@link ListConfigurationsCommandOutput} * @see {@link ListConfigurationsCommandInput} for command's `input` shape. * @see {@link ListConfigurationsCommandOutput} 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 ListConfigurationsCommand extends ListConfigurationsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListConfigurationsRequest; output: ListConfigurationsResponse; }; sdk: { input: ListConfigurationsCommandInput; output: ListConfigurationsCommandOutput; }; }; }