Describe Maintenance Windows
ssm_describe_maintenance_windows | R Documentation |
Retrieves the maintenance windows in an Amazon Web Services account¶
Description¶
Retrieves the maintenance windows in an Amazon Web Services account.
Usage¶
Arguments¶
Filters
Optional filters used to narrow down the scope of the returned maintenance windows. Supported filter keys are
Name
andEnabled
. For example,Name=MyMaintenanceWindow
andEnabled=True
.MaxResults
The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
NextToken
The token for the next set of items to return. (You received this token from a previous call.)
Value¶
A list with the following syntax:
list(
WindowIdentities = list(
list(
WindowId = "string",
Name = "string",
Description = "string",
Enabled = TRUE|FALSE,
Duration = 123,
Cutoff = 123,
Schedule = "string",
ScheduleTimezone = "string",
ScheduleOffset = 123,
EndDate = "string",
StartDate = "string",
NextExecutionTime = "string"
)
),
NextToken = "string"
)