import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListQuickSetupTypesOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListQuickSetupTypesCommand}. */ export interface ListQuickSetupTypesCommandInput { } /** * @public * * The output of {@link ListQuickSetupTypesCommand}. */ export interface ListQuickSetupTypesCommandOutput extends ListQuickSetupTypesOutput, __MetadataBearer { } declare const ListQuickSetupTypesCommand_base: { new (input: ListQuickSetupTypesCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListQuickSetupTypesCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns the available Quick Setup types.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SSMQuickSetupClient, ListQuickSetupTypesCommand } from "@aws-sdk/client-ssm-quicksetup"; // ES Modules import * // const { SSMQuickSetupClient, ListQuickSetupTypesCommand } = 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 = {}; * const command = new ListQuickSetupTypesCommand(input); * const response = await client.send(command); * // { // ListQuickSetupTypesOutput * // QuickSetupTypeList: [ // QuickSetupTypeList * // { // QuickSetupTypeOutput * // Type: "STRING_VALUE", * // LatestVersion: "STRING_VALUE", * // }, * // ], * // }; * * ``` * * @param ListQuickSetupTypesCommandInput - {@link ListQuickSetupTypesCommandInput} * @returns {@link ListQuickSetupTypesCommandOutput} * @see {@link ListQuickSetupTypesCommandInput} for command's `input` shape. * @see {@link ListQuickSetupTypesCommandOutput} 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 ConflictException} (client fault) *

Another request is being processed. Wait a few minutes and try again.

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

An error occurred on the server side.

* * @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 SSMQuickSetupServiceException} *

Base exception class for all service exceptions from SSMQuickSetup service.

* * * @public */ export declare class ListQuickSetupTypesCommand extends ListQuickSetupTypesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: {}; output: ListQuickSetupTypesOutput; }; sdk: { input: ListQuickSetupTypesCommandInput; output: ListQuickSetupTypesCommandOutput; }; }; }