service_level_objective_exclusion_windows
Creates, updates, deletes, gets or lists a service_level_objective_exclusion_windows resource.
Overview
| Name | service_level_objective_exclusion_windows |
| Type | Resource |
| Id | aws.application_signals.service_level_objective_exclusion_windows |
Fields
The following fields are returned by SELECT queries:
- list_service_level_objective_exclusion_windows
| Name | Datatype | Description |
|---|---|---|
reason | string | A description explaining why this time period should be excluded from SLO calculations. |
recurrence_rule | object | The recurrence rule for the SLO time window exclusion. Supports both cron and rate expressions. |
start_time | string (date-time) | The start of the SLO time window exclusion. Defaults to current time if not specified. |
window | object | The SLO time window exclusion . |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_service_level_objective_exclusion_windows | select | id, region | MaxResults, NextToken | Retrieves all exclusion windows configured for a specific SLO. |
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 |
|---|---|---|
id | string | The ID of the SLO to list exclusion windows for. |
region | string | AWS region (default: us-east-1) |
MaxResults | integer | The maximum number of results to return in one operation. If you omit this parameter, the default of 50 is used. |
NextToken | string | Include this value, if it was returned by the previous operation, to get the next set of service level objectives. |
SELECT examples
- list_service_level_objective_exclusion_windows
Retrieves all exclusion windows configured for a specific SLO.
SELECT
reason,
recurrence_rule,
start_time,
window
FROM aws.application_signals.service_level_objective_exclusion_windows
WHERE id = '{{ id }}' -- required
AND region = '{{ region }}' -- required
AND MaxResults = '{{ MaxResults }}'
AND NextToken = '{{ NextToken }}'
;