Skip to main content

managed_notification_child_events

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

Overview

Namemanaged_notification_child_events
TypeResource
Idaws.notifications.managed_notification_child_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}/child-event/[a-z0-9]{27}</code>)
contentobjectThe content of the ManagedNotificationChildEvent.
creation_timestring (date-time)The creation time of the ManagedNotificationChildEvent.
managed_notification_configuration_arnstringThe Amazon Resource Name (ARN) of the ManagedNotificationConfiguration associated with the ManagedNotificationChildEvent. (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_child_eventselectarn, regionlocaleReturns the child event of a specific given ManagedNotificationEvent.
list_managed_notification_child_eventsselectaggregate_managed_notification_event_arn, regionstartTime, endTime, locale, maxResults, relatedAccount, organizationalUnitId, nextTokenReturns a list of ManagedNotificationChildEvents for a specified aggregate ManagedNotificationEvent, 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
aggregate_managed_notification_event_arnstringThe Amazon Resource Name (ARN) of the ManagedNotificationEvent.
arnstringThe Amazon Resource Name (ARN) of the ManagedNotificationChildEvent 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 identifier of the Amazon Web Services Organizations organizational unit (OU) associated with the Managed Notification Child Events.
relatedAccountstringThe Amazon Web Services account ID associated with the Managed Notification Child Events.
startTimestring (date-time)The earliest time of events to return from this call.

SELECT examples

Returns the child event of a specific given ManagedNotificationEvent.

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