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

Creates a new maintenance window.

* *

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, CreateMaintenanceWindowCommand } from "@aws-sdk/client-ssm"; // ES Modules import * // const { SSMClient, CreateMaintenanceWindowCommand } = require("@aws-sdk/client-ssm"); // CommonJS import * const client = new SSMClient(config); * const input = { // CreateMaintenanceWindowRequest * Name: "STRING_VALUE", // required * Description: "STRING_VALUE", * StartDate: "STRING_VALUE", * EndDate: "STRING_VALUE", * Schedule: "STRING_VALUE", // required * ScheduleTimezone: "STRING_VALUE", * ScheduleOffset: Number("int"), * Duration: Number("int"), // required * Cutoff: Number("int"), // required * AllowUnassociatedTargets: true || false, // required * ClientToken: "STRING_VALUE", * Tags: [ // TagList * { // Tag * Key: "STRING_VALUE", // required * Value: "STRING_VALUE", // required * }, * ], * }; * const command = new CreateMaintenanceWindowCommand(input); * const response = await client.send(command); * // { // CreateMaintenanceWindowResult * // WindowId: "STRING_VALUE", * // }; * * ``` * * @param CreateMaintenanceWindowCommandInput - {@link CreateMaintenanceWindowCommandInput} * @returns {@link CreateMaintenanceWindowCommandOutput} * @see {@link CreateMaintenanceWindowCommandInput} for command's `input` shape. * @see {@link CreateMaintenanceWindowCommandOutput} for command's `response` shape. * @see {@link SSMClientResolvedConfig | config} for SSMClient's `config` shape. * * @throws {@link IdempotentParameterMismatch} (client fault) *

Error returned when an idempotent operation is retried and the parameters don't match the * original call to the API with the same idempotency token.

* * @throws {@link InternalServerError} (server fault) *

An error occurred on the server side.

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

Error returned when the caller has exceeded the default resource quotas. For example, too * many maintenance windows or patch baselines have been created.

*

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

* * @throws {@link SSMServiceException} *

Base exception class for all service exceptions from SSM service.

* * * @public */ export declare class CreateMaintenanceWindowCommand extends CreateMaintenanceWindowCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateMaintenanceWindowRequest; output: CreateMaintenanceWindowResult; }; sdk: { input: CreateMaintenanceWindowCommandInput; output: CreateMaintenanceWindowCommandOutput; }; }; }