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

Deletes a maintenance window.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SSMClient, DeleteMaintenanceWindowCommand } from "@aws-sdk/client-ssm"; // ES Modules import * // const { SSMClient, DeleteMaintenanceWindowCommand } = require("@aws-sdk/client-ssm"); // CommonJS import * const client = new SSMClient(config); * const input = { // DeleteMaintenanceWindowRequest * WindowId: "STRING_VALUE", // required * }; * const command = new DeleteMaintenanceWindowCommand(input); * const response = await client.send(command); * // { // DeleteMaintenanceWindowResult * // WindowId: "STRING_VALUE", * // }; * * ``` * * @param DeleteMaintenanceWindowCommandInput - {@link DeleteMaintenanceWindowCommandInput} * @returns {@link DeleteMaintenanceWindowCommandOutput} * @see {@link DeleteMaintenanceWindowCommandInput} for command's `input` shape. * @see {@link DeleteMaintenanceWindowCommandOutput} 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 DeleteMaintenanceWindowCommand extends DeleteMaintenanceWindowCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteMaintenanceWindowRequest; output: DeleteMaintenanceWindowResult; }; sdk: { input: DeleteMaintenanceWindowCommandInput; output: DeleteMaintenanceWindowCommandOutput; }; }; }