Skip to main content

notification_configurations

Creates, updates, deletes or gets a notification_configuration resource or lists notification_configurations in a region

Overview

Namenotification_configurations
TypeResource
DescriptionResource Type definition for AWS::Notifications::NotificationConfiguration
Idawscc.notifications.notification_configurations

Fields

NameDatatypeDescription
aggregation_durationstring
arnstring
creation_timestring
descriptionstring
namestring
statusstring
tagsarrayA list of tags that are attached to the role.
regionstringAWS region.

For more information, see AWS::Notifications::NotificationConfiguration.

Methods

NameAccessible byRequired Params
create_resourceINSERTDescription, Name, region
delete_resourceDELETEdata__Identifier, region
update_resourceUPDATEdata__Identifier, data__PatchDocument, region
list_resourcesSELECTregion
get_resourceSELECTdata__Identifier, region

SELECT examples

Gets all properties from an individual notification_configuration.

SELECT
region,
aggregation_duration,
arn,
creation_time,
description,
name,
status,
tags
FROM awscc.notifications.notification_configurations
WHERE region = 'us-east-1' AND data__Identifier = '<Arn>';

INSERT example

Use the following StackQL query and manifest file to create a new notification_configuration resource, using stack-deploy.

/*+ create */
INSERT INTO awscc.notifications.notification_configurations (
Description,
Name,
region
)
SELECT
'{{ Description }}',
'{{ Name }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM awscc.notifications.notification_configurations
WHERE data__Identifier = '<Arn>'
AND region = 'us-east-1';

Permissions

To operate on the notification_configurations resource, the following permissions are required:

Create

notifications:CreateNotificationConfiguration,
notifications:GetNotificationConfiguration,
notifications:UpdateNotificationConfiguration,
notifications:TagResource,
notifications:UntagResource,
notifications:ListTagsForResource,
iam:CreateServiceLinkedRole

Read

notifications:GetNotificationConfiguration,
notifications:ListTagsForResource,
notifications:TagResource,
notifications:UntagResource

Update

notifications:CreateNotificationConfiguration,
notifications:GetNotificationConfiguration,
notifications:UpdateNotificationConfiguration,
notifications:TagResource,
notifications:UntagResource,
notifications:ListTagsForResource

Delete

notifications:DeleteNotificationConfiguration

List

notifications:ListNotificationConfigurations,
notifications:ListTagsForResource