notifications
Creates, updates, deletes, gets or lists a notifications resource.
Overview
| Name | notifications |
| Type | Resource |
| Id | aws.wellarchitected.notifications |
Fields
The following fields are returned by SELECT queries:
- list_notifications
| Name | Datatype | Description |
|---|---|---|
next_token | string | The token to use to retrieve the next set of results. (pattern: <code>[A-Za-z0-9+/=_-]+</code>) |
notification_summaries | array | List of lens notification summaries in a workload. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_notifications | select | region | List lens notifications. |
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
- list_notifications
List lens notifications.
SELECT
next_token,
notification_summaries
FROM aws.wellarchitected.notifications
WHERE region = '{{ region }}' -- required
;