Skip to content

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

ssm_describe_maintenance_windows(Filters, MaxResults, NextToken)

Arguments

Filters

Optional filters used to narrow down the scope of the returned maintenance windows. Supported filter keys are Name and Enabled. For example, Name=MyMaintenanceWindow and Enabled=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"
)

Request syntax

svc$describe_maintenance_windows(
  Filters = list(
    list(
      Key = "string",
      Values = list(
        "string"
      )
    )
  ),
  MaxResults = 123,
  NextToken = "string"
)