/AWS1/IF_SSM=>CREATEMAINTENANCEWINDOW()¶
About CreateMaintenanceWindow¶
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.
Method Signature¶
METHODS /AWS1/IF_SSM~CREATEMAINTENANCEWINDOW
IMPORTING
!IV_NAME TYPE /AWS1/SSMMAINTENANCEWINDOWNAME OPTIONAL
!IV_DESCRIPTION TYPE /AWS1/SSMMAINTENANCEWINDOWDESC OPTIONAL
!IV_STARTDATE TYPE /AWS1/SSMMAINTENANCEWINDOWST00 OPTIONAL
!IV_ENDDATE TYPE /AWS1/SSMMAINTENANCEWINDOWST00 OPTIONAL
!IV_SCHEDULE TYPE /AWS1/SSMMAINTENANCEWINDOWSCHD OPTIONAL
!IV_SCHEDULETIMEZONE TYPE /AWS1/SSMMAINTENANCEWINDOWTI00 OPTIONAL
!IV_SCHEDULEOFFSET TYPE /AWS1/SSMMAINTENANCEWINDOWOFF OPTIONAL
!IV_DURATION TYPE /AWS1/SSMMAINTENANCEWINDOWDU00 OPTIONAL
!IV_CUTOFF TYPE /AWS1/SSMMAINTENANCEWINDOWCU00 OPTIONAL
!IV_ALLOWUNASSOCIATEDTARGETS TYPE /AWS1/SSMMAINTENANCEWINDOWAL00 OPTIONAL
!IV_CLIENTTOKEN TYPE /AWS1/SSMCLIENTTOKEN OPTIONAL
!IT_TAGS TYPE /AWS1/CL_SSMTAG=>TT_TAGLIST OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_ssmcremaintenancewi01
RAISING
/AWS1/CX_SSMIDEMPOTENTPRMMIS00
/AWS1/CX_SSMINTERNALSERVERERR
/AWS1/CX_SSMRESRCLIMITEXCDEX
/AWS1/CX_SSMCLIENTEXC
/AWS1/CX_SSMSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_name TYPE /AWS1/SSMMAINTENANCEWINDOWNAME /AWS1/SSMMAINTENANCEWINDOWNAME¶
The name of the maintenance window.
iv_schedule TYPE /AWS1/SSMMAINTENANCEWINDOWSCHD /AWS1/SSMMAINTENANCEWINDOWSCHD¶
The schedule of the maintenance window in the form of a cron or rate expression.
iv_duration TYPE /AWS1/SSMMAINTENANCEWINDOWDU00 /AWS1/SSMMAINTENANCEWINDOWDU00¶
The duration of the maintenance window in hours.
iv_cutoff TYPE /AWS1/SSMMAINTENANCEWINDOWCU00 /AWS1/SSMMAINTENANCEWINDOWCU00¶
The number of hours before the end of the maintenance window that Amazon Web Services Systems Manager stops scheduling new tasks for execution.
iv_allowunassociatedtargets TYPE /AWS1/SSMMAINTENANCEWINDOWAL00 /AWS1/SSMMAINTENANCEWINDOWAL00¶
Enables a maintenance window task to run on managed nodes, even if you haven't registered those nodes as targets. If enabled, then you must specify the unregistered managed nodes (by node ID) when you register a task with the maintenance window.
If you don't enable this option, then you must specify previously-registered targets when you register a task with the maintenance window.
Optional arguments:¶
iv_description TYPE /AWS1/SSMMAINTENANCEWINDOWDESC /AWS1/SSMMAINTENANCEWINDOWDESC¶
An optional description for the maintenance window. We recommend specifying a description to help you organize your maintenance windows.
iv_startdate TYPE /AWS1/SSMMAINTENANCEWINDOWST00 /AWS1/SSMMAINTENANCEWINDOWST00¶
The date and time, in ISO-8601 Extended format, for when you want the maintenance window to become active.
StartDateallows you to delay activation of the maintenance window until the specified future date.When using a rate schedule, if you provide a start date that occurs in the past, the current date and time are used as the start date.
iv_enddate TYPE /AWS1/SSMMAINTENANCEWINDOWST00 /AWS1/SSMMAINTENANCEWINDOWST00¶
The date and time, in ISO-8601 Extended format, for when you want the maintenance window to become inactive.
EndDateallows you to set a date and time in the future when the maintenance window will no longer run.
iv_scheduletimezone TYPE /AWS1/SSMMAINTENANCEWINDOWTI00 /AWS1/SSMMAINTENANCEWINDOWTI00¶
The time zone that the scheduled maintenance window executions are based on, in Internet Assigned Numbers Authority (IANA) format. For example: "America/Los_Angeles", "UTC", or "Asia/Seoul". For more information, see the Time Zone Database on the IANA website.
iv_scheduleoffset TYPE /AWS1/SSMMAINTENANCEWINDOWOFF /AWS1/SSMMAINTENANCEWINDOWOFF¶
The number of days to wait after the date and time specified by a cron expression before running the maintenance window.
For example, the following cron expression schedules a maintenance window to run on the third Tuesday of every month at 11:30 PM.
cron(30 23 ? * TUE#3 *)If the schedule offset is
2, the maintenance window won't run until two days later.
iv_clienttoken TYPE /AWS1/SSMCLIENTTOKEN /AWS1/SSMCLIENTTOKEN¶
User-provided idempotency token.
it_tags TYPE /AWS1/CL_SSMTAG=>TT_TAGLIST TT_TAGLIST¶
Optional metadata that you assign to a resource. Tags enable you to categorize a resource in different ways, such as by purpose, owner, or environment. For example, you might want to tag a maintenance window to identify the type of tasks it will run, the types of targets, and the environment it will run in. In this case, you could specify the following key-value pairs:
Key=TaskType,Value=AgentUpdate
Key=OS,Value=Windows
Key=Environment,Value=ProductionTo add tags to an existing maintenance window, use the AddTagsToResource operation.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_ssmcremaintenancewi01 /AWS1/CL_SSMCREMAINTENANCEWI01¶
Domain /AWS1/RT_ACCOUNT_ID Primitive Type NUMC
Examples¶
Syntax Example¶
This is an example of the syntax for calling the method. It includes every possible argument and initializes every possible value. The data provided is not necessarily semantically accurate (for example the value "string" may be provided for something that is intended to be an instance ID, or in some cases two arguments may be mutually exclusive). The syntax shows the ABAP syntax for creating the various data structures.
DATA(lo_result) = lo_client->createmaintenancewindow(
it_tags = VALUE /aws1/cl_ssmtag=>tt_taglist(
(
new /aws1/cl_ssmtag(
iv_key = |string|
iv_value = |string|
)
)
)
iv_allowunassociatedtargets = ABAP_TRUE
iv_clienttoken = |string|
iv_cutoff = 123
iv_description = |string|
iv_duration = 123
iv_enddate = |string|
iv_name = |string|
iv_schedule = |string|
iv_scheduleoffset = 123
iv_scheduletimezone = |string|
iv_startdate = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_maintenancewindowid = lo_result->get_windowid( ).
ENDIF.