profile_notifications
Creates, updates, deletes, gets or lists a profile_notifications resource.
Overview
| Name | profile_notifications |
| Type | Resource |
| Id | aws.wellarchitected.profile_notifications |
Fields
The following fields are returned by SELECT queries:
- list_profile_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 | Notification summaries. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_profile_notifications | select | region | WorkloadId, NextToken, MaxResults | List profile 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) |
MaxResults | integer | |
NextToken | string | |
WorkloadId | string |
SELECT examples
- list_profile_notifications
List profile notifications.
SELECT
next_token,
notification_summaries
FROM aws.wellarchitected.profile_notifications
WHERE region = '{{ region }}' -- required
AND WorkloadId = '{{ WorkloadId }}'
AND NextToken = '{{ NextToken }}'
AND MaxResults = '{{ MaxResults }}'
;