Skip to content

List Service Level Objective Exclusion Windows

cloudwatchapplicationsignals_list_service_level_objective_exclusion_windows R Documentation

Retrieves all exclusion windows configured for a specific SLO

Description

Retrieves all exclusion windows configured for a specific SLO.

Usage

cloudwatchapplicationsignals_list_service_level_objective_exclusion_windows(
  Id, MaxResults, NextToken)

Arguments

Id

[required] The ID of the SLO to list exclusion windows for.

MaxResults

The maximum number of results to return in one operation. If you omit this parameter, the default of 50 is used.

 </p>
NextToken

Include this value, if it was returned by the previous operation, to get the next set of service level objectives.

 </p>

Value

A list with the following syntax:

list(
  ExclusionWindows = list(
    list(
      Window = list(
        DurationUnit = "MINUTE"|"HOUR"|"DAY"|"MONTH",
        Duration = 123
      ),
      StartTime = as.POSIXct(
        "2015-01-01"
      ),
      RecurrenceRule = list(
        Expression = "string"
      ),
      Reason = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_service_level_objective_exclusion_windows(
  Id = "string",
  MaxResults = 123,
  NextToken = "string"
)