import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListConfigurationsInput, ListConfigurationsOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListConfigurationsCommand}. */ export interface ListConfigurationsCommandInput extends ListConfigurationsInput { } /** * @public * * The output of {@link ListConfigurationsCommand}. */ export interface ListConfigurationsCommandOutput extends ListConfigurationsOutput, __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 configurations deployed by Quick Setup in the requesting Amazon Web Services account and Amazon Web Services Region.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SSMQuickSetupClient, ListConfigurationsCommand } from "@aws-sdk/client-ssm-quicksetup"; // ES Modules import * // const { SSMQuickSetupClient, ListConfigurationsCommand } = require("@aws-sdk/client-ssm-quicksetup"); // CommonJS import * // import type { SSMQuickSetupClientConfig } from "@aws-sdk/client-ssm-quicksetup"; * const config = {}; // type is SSMQuickSetupClientConfig * const client = new SSMQuickSetupClient(config); * const input = { // ListConfigurationsInput * StartingToken: "STRING_VALUE", * MaxItems: Number("int"), * Filters: [ // FiltersList * { // Filter * Key: "STRING_VALUE", // required * Values: [ // FilterValues // required * "STRING_VALUE", * ], * }, * ], * ManagerArn: "STRING_VALUE", * ConfigurationDefinitionId: "STRING_VALUE", * }; * const command = new ListConfigurationsCommand(input); * const response = await client.send(command); * // { // ListConfigurationsOutput * // ConfigurationsList: [ // ConfigurationsList * // { // ConfigurationSummary * // Id: "STRING_VALUE", * // ManagerArn: "STRING_VALUE", * // ConfigurationDefinitionId: "STRING_VALUE", * // Type: "STRING_VALUE", * // TypeVersion: "STRING_VALUE", * // Region: "STRING_VALUE", * // Account: "STRING_VALUE", * // CreatedAt: new Date("TIMESTAMP"), * // FirstClassParameters: { // ConfigurationParametersMap * // "": "STRING_VALUE", * // }, * // StatusSummaries: [ // StatusSummariesList * // { // StatusSummary * // StatusType: "Deployment" || "AsyncExecutions", // required * // Status: "INITIALIZING" || "DEPLOYING" || "SUCCEEDED" || "DELETING" || "STOPPING" || "FAILED" || "STOPPED" || "DELETE_FAILED" || "STOP_FAILED" || "NONE", * // StatusMessage: "STRING_VALUE", * // LastUpdatedAt: new Date("TIMESTAMP"), // required * // StatusDetails: { // StatusDetails * // "": "STRING_VALUE", * // }, * // }, * // ], * // }, * // ], * // 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 SSMQuickSetupClientResolvedConfig | config} for SSMQuickSetupClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

The requester has insufficient permissions to perform the operation.

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

An error occurred on the server side.

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

The resource couldn't be found. Check the ID or name and try again.

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

The request or operation exceeds the maximum allowed request rate per Amazon Web Services account and Amazon Web Services Region.

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

The request is invalid. Verify the values provided for the request parameters are * accurate.

* * @throws {@link SSMQuickSetupServiceException} *

Base exception class for all service exceptions from SSMQuickSetup service.

* * * @public */ export declare class ListConfigurationsCommand extends ListConfigurationsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListConfigurationsInput; output: ListConfigurationsOutput; }; sdk: { input: ListConfigurationsCommandInput; output: ListConfigurationsCommandOutput; }; }; }