Skip to main content

profile_notifications

Creates, updates, deletes, gets or lists a profile_notifications resource.

Overview

Nameprofile_notifications
TypeResource
Idaws.wellarchitected.profile_notifications

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_tokenstringThe token to use to retrieve the next set of results. (pattern: <code>[A-Za-z0-9+/=_-]+</code>)
notification_summariesarrayNotification summaries.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_profile_notificationsselectregionWorkloadId, NextToken, MaxResultsList 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
MaxResultsinteger
NextTokenstring
WorkloadIdstring

SELECT examples

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 }}'
;