Managing an in-browser push notification channel
Written by
Updated at April 17, 2025
Updating channel parameters
Management console
AWS CLI
API
- In the management console
, select the folder containing the notification channel. - From the list of services, select Cloud Notification Service.
- Click
next to the channel and select Edit. - Edit the channel description.
- Click Save.
-
If you do not have the AWS CLI yet, install and configure it.
-
Run this command:
aws sns set-platform-application-attributes \ --platform-application-arn <notification_channel_ARN> \ --attributes <parameter1>=<new_value1>
Where:
--platform-application-arn
: Notification channel ID (ARN).--attributes
: Notification channel parameters.
For more information about the
aws sns set-platform-application-attributes
command, see the AWS documentation .
Use the setAttributes HTTP API method for the PlatformApplications resource in Yandex Cloud Notification Service.
Updating a notification channel may take some time.
Deleting a channel
Management console
AWS CLI
API
- In the management console
, go to the folder containing the notification channel. - In the list of services, select Cloud Notification Service.
- Click
next to the notification channel and select Delete. - In the window that opens, click Delete.
-
If you do not have the AWS CLI yet, install and configure it.
-
Run this command:
aws sns delete-platform-application \ --platform-application-arn <notification_channel_ARN>
Where
--platform-application-arn
is the notification channel ID (ARN).For more information about the
aws sns delete-platform-application
command, see the AWS documentation .
Use the delete HTTP API method for the PlatformApplications resource in Yandex Cloud Notification Service.