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

Stops a maintenance window execution that is already in progress and cancels any tasks in * the window that haven't already starting running. Tasks already in progress will continue to * completion.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SSMClient, CancelMaintenanceWindowExecutionCommand } from "@aws-sdk/client-ssm"; // ES Modules import * // const { SSMClient, CancelMaintenanceWindowExecutionCommand } = require("@aws-sdk/client-ssm"); // CommonJS import * const client = new SSMClient(config); * const input = { // CancelMaintenanceWindowExecutionRequest * WindowExecutionId: "STRING_VALUE", // required * }; * const command = new CancelMaintenanceWindowExecutionCommand(input); * const response = await client.send(command); * // { // CancelMaintenanceWindowExecutionResult * // WindowExecutionId: "STRING_VALUE", * // }; * * ``` * * @param CancelMaintenanceWindowExecutionCommandInput - {@link CancelMaintenanceWindowExecutionCommandInput} * @returns {@link CancelMaintenanceWindowExecutionCommandOutput} * @see {@link CancelMaintenanceWindowExecutionCommandInput} for command's `input` shape. * @see {@link CancelMaintenanceWindowExecutionCommandOutput} for command's `response` shape. * @see {@link SSMClientResolvedConfig | config} for SSMClient's `config` shape. * * @throws {@link DoesNotExistException} (client fault) *

Error returned when the ID specified for a resource, such as a maintenance window or patch * baseline, doesn't exist.

*

For information about resource quotas in Amazon Web Services Systems Manager, see Systems Manager service quotas in the * Amazon Web Services General Reference.

* * @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 CancelMaintenanceWindowExecutionCommand extends CancelMaintenanceWindowExecutionCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CancelMaintenanceWindowExecutionRequest; output: CancelMaintenanceWindowExecutionResult; }; sdk: { input: CancelMaintenanceWindowExecutionCommandInput; output: CancelMaintenanceWindowExecutionCommandOutput; }; }; }