Skip to main content

maintenance_window_schedules

Creates, updates, deletes, gets or lists a maintenance_window_schedules resource.

Overview

Namemaintenance_window_schedules
TypeResource
Idaws.ssm.maintenance_window_schedules

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
execution_timestringThe time, in ISO-8601 Extended format, that the maintenance window is scheduled to be run.
namestringThe name of the maintenance window to be run. (pattern: <code>^[a-zA-Z0-9_-.]{3,128}$</code>)
window_idstringThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_maintenance_window_scheduleselectregionRetrieves 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;