Skip to main content

notification_configurations

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

Overview

Namenotification_configurations
TypeResource
Idaws.codeguruprofiler.notification_configurations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
channelsarrayList of up to two channels to be used for sending notifications for events detected from the application profile.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_notification_configurationselectprofiling_group_name, regionGet the current configuration for anomaly notifications for a profiling group.

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
profiling_group_namestringThe name of the profiling group we want to get the notification configuration for.
regionstringAWS region (default: us-east-1)

SELECT examples

Get the current configuration for anomaly notifications for a profiling group.

SELECT
channels
FROM aws.codeguruprofiler.notification_configurations
WHERE profiling_group_name = '{{ profiling_group_name }}' -- required
AND region = '{{ region }}' -- required
;