Configuring logging
Written by
Updated at March 31, 2025
Management console
AWS CLI
- In the management console
, select the folder containing the notification channel. - From the list of services, select Cloud Notification Service.
- Select the channel you need or initiate creating a new one. If you have selected an existing channel, click Edit in the top-right corner.
- Under Logging, tick the checkbox for Enabled in the Write logs field.
- In the Folder field, select a folder to house the log group.
- In the Log group field, select an existing log group or create a new one.
- To disable logging, untick the Enabled checkbox.
-
If you do not have the AWS CLI yet, install and configure it.
-
Run this command:
aws sns set-endpoint-attributes \ --endpoint-arn <endpoint_ARN> \ --attributes LoggingPath=<folder_ID>/<log_group_ID>
Where:
--endpoint-arn
: Endpoint ID (ARN).--attributes
: Endpoint parameters. To configure logging, use theLoggingPath
parameter.folder_ID
: ID of the folder housing the log group. The folder must be in the same cloud as the app.log_group_ID
: ID of the log group to send logs to. This is an optional parameter; if no ID is specified, the default log group is used.
-
To disable logging, provide an empty value for the
LoggingPath
attribute.
For more information about the aws sns set-endpoint-attributes
command, see the AWS documentation