import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListConfigurationSetsRequest, ListConfigurationSetsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListConfigurationSetsCommand}. */ export interface ListConfigurationSetsCommandInput extends ListConfigurationSetsRequest { } /** * @public * * The output of {@link ListConfigurationSetsCommand}. */ export interface ListConfigurationSetsCommandOutput extends ListConfigurationSetsResponse, __MetadataBearer { } declare const ListConfigurationSetsCommand_base: { new (input: ListConfigurationSetsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListConfigurationSetsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** * List all of the configuration sets associated with your Amazon Pinpoint account in the current region. * @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { PinpointSMSVoiceClient, ListConfigurationSetsCommand } from "@aws-sdk/client-pinpoint-sms-voice"; // ES Modules import * // const { PinpointSMSVoiceClient, ListConfigurationSetsCommand } = require("@aws-sdk/client-pinpoint-sms-voice"); // CommonJS import * // import type { PinpointSMSVoiceClientConfig } from "@aws-sdk/client-pinpoint-sms-voice"; * const config = {}; // type is PinpointSMSVoiceClientConfig * const client = new PinpointSMSVoiceClient(config); * const input = { // ListConfigurationSetsRequest * NextToken: "STRING_VALUE", * PageSize: "STRING_VALUE", * }; * const command = new ListConfigurationSetsCommand(input); * const response = await client.send(command); * // { // ListConfigurationSetsResponse * // ConfigurationSets: [ // ConfigurationSets * // "STRING_VALUE", * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListConfigurationSetsCommandInput - {@link ListConfigurationSetsCommandInput} * @returns {@link ListConfigurationSetsCommandOutput} * @see {@link ListConfigurationSetsCommandInput} for command's `input` shape. * @see {@link ListConfigurationSetsCommandOutput} for command's `response` shape. * @see {@link PinpointSMSVoiceClientResolvedConfig | config} for PinpointSMSVoiceClient's `config` shape. * * @throws {@link BadRequestException} (client fault) * The input you provided is invalid. * * @throws {@link InternalServiceErrorException} (server fault) * The API encountered an unexpected error and couldn't complete the request. You might be able to successfully issue the request again in the future. * * @throws {@link TooManyRequestsException} (client fault) * You've issued too many requests to the resource. Wait a few minutes, and then try again. * * @throws {@link PinpointSMSVoiceServiceException} *

Base exception class for all service exceptions from PinpointSMSVoice service.

* * * @public */ export declare class ListConfigurationSetsCommand extends ListConfigurationSetsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListConfigurationSetsRequest; output: ListConfigurationSetsResponse; }; sdk: { input: ListConfigurationSetsCommandInput; output: ListConfigurationSetsCommandOutput; }; }; }