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

Delete a parameter from the system. 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, DeleteParameterCommand } from "@aws-sdk/client-ssm"; // ES Modules import * // const { SSMClient, DeleteParameterCommand } = require("@aws-sdk/client-ssm"); // CommonJS import * const client = new SSMClient(config); * const input = { // DeleteParameterRequest * Name: "STRING_VALUE", // required * }; * const command = new DeleteParameterCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteParameterCommandInput - {@link DeleteParameterCommandInput} * @returns {@link DeleteParameterCommandOutput} * @see {@link DeleteParameterCommandInput} for command's `input` shape. * @see {@link DeleteParameterCommandOutput} 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 ParameterNotFound} (client fault) *

The parameter couldn't be found. Verify the name and try again.

* *

For the DeleteParameter and GetParameter actions, if the * specified parameter doesn't exist, the ParameterNotFound exception is * not recorded in CloudTrail event logs.

*
* * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* * * @public */ export declare class DeleteParameterCommand extends DeleteParameterCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteParameterRequest; output: {}; }; sdk: { input: DeleteParameterCommandInput; output: DeleteParameterCommandOutput; }; }; }