maintenance_window_schedules
Creates, updates, deletes, gets or lists a maintenance_window_schedules resource.
Overview
| Name | maintenance_window_schedules |
| Type | Resource |
| Id | aws.ssm.maintenance_window_schedules |
Fields
The following fields are returned by SELECT queries:
- describe_maintenance_window_schedule
| Name | Datatype | Description |
|---|---|---|
execution_time | string | The time, in ISO-8601 Extended format, that the maintenance window is scheduled to be run. |
name | string | The name of the maintenance window to be run. (pattern: <code>^[a-zA-Z0-9_-.]{3,128}$</code>) |
window_id | string | The ID of the maintenance window to be run. (pattern: <code>^mw-[0-9a-f]{17}$</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_maintenance_window_schedule | select | region | Retrieves information about upcoming executions of a maintenance window. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_maintenance_window_schedule
Retrieves information about upcoming executions of a maintenance window.
SELECT
execution_time,
name,
window_id
FROM aws.ssm.maintenance_window_schedules
WHERE region = '{{ region }}' -- required
;