import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { DeleteParametersRequest, DeleteParametersResult } from "../models/models_0"; import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteParametersCommand}. */ export interface DeleteParametersCommandInput extends DeleteParametersRequest { } /** * @public * * The output of {@link DeleteParametersCommand}. */ export interface DeleteParametersCommandOutput extends DeleteParametersResult, __MetadataBearer { } declare const DeleteParametersCommand_base: { new (input: DeleteParametersCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeleteParametersCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Delete a list of parameters. After deleting a parameter, wait for at least 30 seconds to * create a parameter with the same name.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SSMClient, DeleteParametersCommand } from "@aws-sdk/client-ssm"; // ES Modules import * // const { SSMClient, DeleteParametersCommand } = require("@aws-sdk/client-ssm"); // CommonJS import * const client = new SSMClient(config); * const input = { // DeleteParametersRequest * Names: [ // ParameterNameList // required * "STRING_VALUE", * ], * }; * const command = new DeleteParametersCommand(input); * const response = await client.send(command); * // { // DeleteParametersResult * // DeletedParameters: [ // ParameterNameList * // "STRING_VALUE", * // ], * // InvalidParameters: [ * // "STRING_VALUE", * // ], * // }; * * ``` * * @param DeleteParametersCommandInput - {@link DeleteParametersCommandInput} * @returns {@link DeleteParametersCommandOutput} * @see {@link DeleteParametersCommandInput} for command's `input` shape. * @see {@link DeleteParametersCommandOutput} for command's `response` shape. * @see {@link SSMClientResolvedConfig | config} for SSMClient's `config` shape. * * @throws {@link InternalServerError} (server fault) *

An error occurred on the server side.

* * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* * * @public */ export declare class DeleteParametersCommand extends DeleteParametersCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteParametersRequest; output: DeleteParametersResult; }; sdk: { input: DeleteParametersCommandInput; output: DeleteParametersCommandOutput; }; }; }