UserNotifications / Client / list_managed_notification_configurations
list_managed_notification_configurations#
- UserNotifications.Client.list_managed_notification_configurations(**kwargs)#
Returns a list of Managed Notification Configurations according to specified filters, ordered by creation time in reverse chronological order (newest first).
See also: AWS API Documentation
Request Syntax
response = client.list_managed_notification_configurations( channelIdentifier='string', maxResults=123, nextToken='string' )
- Parameters:
channelIdentifier (string) – The identifier or ARN of the notification channel to filter configurations by.
maxResults (integer) – The maximum number of results to be returned in this call. Defaults to 20.
nextToken (string) – The start token for paginated calls. Retrieved from the response of a previous ListManagedNotificationChannelAssociations call. Next token uses Base64 encoding.
- Return type:
dict
- Returns:
Response Syntax
{ 'nextToken': 'string', 'managedNotificationConfigurations': [ { 'arn': 'string', 'name': 'string', 'description': 'string' }, ] }
Response Structure
(dict) –
nextToken (string) –
A pagination token. If a non-null pagination token is returned in a result, pass its value in another request to retrieve more entries.
managedNotificationConfigurations (list) –
A list of Managed Notification Configurations matching the request criteria.
(dict) –
Describes the basic structure and properties of a
ManagedNotificationConfiguration
.arn (string) –
The Amazon Resource Name (ARN) of the
ManagedNotificationConfiguration
.name (string) –
The name of the
ManagedNotificationConfiguration
.description (string) –
The description of the
ManagedNotificationConfiguration
.
Exceptions