Skip to main content

managed_notification_events

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

Overview

Namemanaged_notification_events
TypeResource
Idaws.notifications.managed_notification_events

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
arnstringThe ARN of the resource. (pattern: <code>arn:[-.a-z0-9]{1,63}:notifications::[0-9]{12}:managed-notification-configuration/category/[a-zA-Z0-9-]{3,64}/sub-category/[a-zA-Z0-9-]{3,64}/event/[a-z0-9]{27}</code>)
contentobjectThe content of the ManagedNotificationEvent.
creation_timestring (date-time)The creation time of the ManagedNotificationEvent.
managed_notification_configuration_arnstringThe ARN of the ManagedNotificationConfiguration. (pattern: <code>arn:[-.a-z0-9]{1,63}:notifications::[0-9]{12}:managed-notification-configuration/category/[a-zA-Z0-9-]{3,64}/sub-category/[a-zA-Z0-9-]{3,64}</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_managed_notification_eventselectarn, regionlocaleReturns a specified ManagedNotificationEvent.
list_managed_notification_eventsselectregionstartTime, endTime, locale, source, maxResults, nextToken, organizationalUnitId, relatedAccountReturns a list of Managed Notification Events according to specified filters, ordered by creation time in reverse chronological order (newest first).

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
arnstringThe Amazon Resource Name (ARN) of the ManagedNotificationEvent to return.
regionstringAWS region (default: us-east-1)
endTimestring (date-time)Latest time of events to return from this call.
localestringThe locale code of the language used for the retrieved NotificationEvent. The default locale is English (en_US).
maxResultsintegerThe maximum number of results to be returned in this call. Defaults to 20.
nextTokenstringThe start token for paginated calls. Retrieved from the response of a previous ListManagedNotificationChannelAssociations call. Next token uses Base64 encoding.
organizationalUnitIdstringThe Organizational Unit Id that an Amazon Web Services account belongs to.
relatedAccountstringThe Amazon Web Services account ID associated with the Managed Notification Events.
sourcestringThe Amazon Web Services service the event originates from. For example aws.cloudwatch.
startTimestring (date-time)The earliest time of events to return from this call.

SELECT examples

Returns a specified ManagedNotificationEvent.

SELECT
arn,
content,
creation_time,
managed_notification_configuration_arn
FROM aws.notifications.managed_notification_events
WHERE arn = '{{ arn }}' -- required
AND region = '{{ region }}' -- required
AND locale = '{{ locale }}'
;