import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { UpdateMaintenanceWindowRequest, UpdateMaintenanceWindowResult } from "../models/models_2"; import { ServiceInputTypes, ServiceOutputTypes, SSMClientResolvedConfig } from "../SSMClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link UpdateMaintenanceWindowCommand}. */ export interface UpdateMaintenanceWindowCommandInput extends UpdateMaintenanceWindowRequest { } /** * @public * * The output of {@link UpdateMaintenanceWindowCommand}. */ export interface UpdateMaintenanceWindowCommandOutput extends UpdateMaintenanceWindowResult, __MetadataBearer { } declare const UpdateMaintenanceWindowCommand_base: { new (input: UpdateMaintenanceWindowCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: UpdateMaintenanceWindowCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Updates an existing maintenance window. Only specified parameters are modified.

* *

The value you specify for Duration determines the specific end time for the * maintenance window based on the time it begins. No maintenance window tasks are permitted to * start after the resulting endtime minus the number of hours you specify for Cutoff. * For example, if the maintenance window starts at 3 PM, the duration is three hours, and the * value you specify for Cutoff is one hour, no maintenance window tasks can start * after 5 PM.

*
* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SSMClient, UpdateMaintenanceWindowCommand } from "@aws-sdk/client-ssm"; // ES Modules import * // const { SSMClient, UpdateMaintenanceWindowCommand } = require("@aws-sdk/client-ssm"); // CommonJS import * const client = new SSMClient(config); * const input = { // UpdateMaintenanceWindowRequest * WindowId: "STRING_VALUE", // required * Name: "STRING_VALUE", * Description: "STRING_VALUE", * StartDate: "STRING_VALUE", * EndDate: "STRING_VALUE", * Schedule: "STRING_VALUE", * ScheduleTimezone: "STRING_VALUE", * ScheduleOffset: Number("int"), * Duration: Number("int"), * Cutoff: Number("int"), * AllowUnassociatedTargets: true || false, * Enabled: true || false, * Replace: true || false, * }; * const command = new UpdateMaintenanceWindowCommand(input); * const response = await client.send(command); * // { // UpdateMaintenanceWindowResult * // WindowId: "STRING_VALUE", * // Name: "STRING_VALUE", * // Description: "STRING_VALUE", * // StartDate: "STRING_VALUE", * // EndDate: "STRING_VALUE", * // Schedule: "STRING_VALUE", * // ScheduleTimezone: "STRING_VALUE", * // ScheduleOffset: Number("int"), * // Duration: Number("int"), * // Cutoff: Number("int"), * // AllowUnassociatedTargets: true || false, * // Enabled: true || false, * // }; * * ``` * * @param UpdateMaintenanceWindowCommandInput - {@link UpdateMaintenanceWindowCommandInput} * @returns {@link UpdateMaintenanceWindowCommandOutput} * @see {@link UpdateMaintenanceWindowCommandInput} for command's `input` shape. * @see {@link UpdateMaintenanceWindowCommandOutput} 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 UpdateMaintenanceWindowCommand extends UpdateMaintenanceWindowCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateMaintenanceWindowRequest; output: UpdateMaintenanceWindowResult; }; sdk: { input: UpdateMaintenanceWindowCommandInput; output: UpdateMaintenanceWindowCommandOutput; }; }; }