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

Deletes an activation. You aren't required to delete an activation. If you delete an * activation, you can no longer use it to register additional managed nodes. Deleting an activation * doesn't de-register managed nodes. You must manually de-register managed nodes.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SSMClient, DeleteActivationCommand } from "@aws-sdk/client-ssm"; // ES Modules import * // const { SSMClient, DeleteActivationCommand } = require("@aws-sdk/client-ssm"); // CommonJS import * const client = new SSMClient(config); * const input = { // DeleteActivationRequest * ActivationId: "STRING_VALUE", // required * }; * const command = new DeleteActivationCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DeleteActivationCommandInput - {@link DeleteActivationCommandInput} * @returns {@link DeleteActivationCommandOutput} * @see {@link DeleteActivationCommandInput} for command's `input` shape. * @see {@link DeleteActivationCommandOutput} 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 InvalidActivation} (client fault) *

The activation isn't valid. The activation might have been deleted, or the ActivationId and * the ActivationCode don't match.

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

The activation ID isn't valid. Verify that you entered the correct ActivationId or * ActivationCode and try again.

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

There are concurrent updates for a resource that supports one update at a time.

* * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* * * @public */ export declare class DeleteActivationCommand extends DeleteActivationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteActivationRequest; output: {}; }; sdk: { input: DeleteActivationCommandInput; output: DeleteActivationCommandOutput; }; }; }