Skip to main content

notification_hubs

Creates, updates, deletes or gets a notification_hub resource or lists notification_hubs in a region

Overview

Namenotification_hubs
TypeResource
DescriptionResource Type definition for AWS::Notifications::NotificationHub
Idawscc.notifications.notification_hubs

Fields

NameDatatypeDescription
regionstringRegion that NotificationHub is present in.
notification_hub_status_summaryobject
creation_timestring
regionstringAWS region.

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

Methods

NameResourceAccessible byRequired Params
create_resourcenotification_hubsINSERTRegion, region
delete_resourcenotification_hubsDELETEIdentifier, region
list_resourcesnotification_hubs_list_onlySELECTregion
get_resourcenotification_hubsSELECTIdentifier, region

SELECT examples

Gets all properties from an individual notification_hub.

SELECT
region,
region,
notification_hub_status_summary,
creation_time
FROM awscc.notifications.notification_hubs
WHERE
region = 'us-east-1' AND
Identifier = '{{ region }}';

INSERT example

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

/*+ create */
INSERT INTO awscc.notifications.notification_hubs (
Region,
region
)
SELECT
'{{ region }}',
'{{ region }}';

DELETE example

/*+ delete */
DELETE FROM awscc.notifications.notification_hubs
WHERE
Identifier = '{{ region }}' AND
region = 'us-east-1';

Permissions

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

notifications:ListNotificationHubs