Yandex Cloud
Search
Contact UsGet started
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • AI for business
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
© 2025 Direct Cursus Technology L.L.C.
Yandex Cloud Notification Service
    • Overview
    • Getting started with mobile push notifications
    • Getting started with in-browser push notifications
    • Getting started with SMS
    • Getting started with topics
    • All guides
      • Create topic
      • Creating a subscription to a topic
      • Sending a notification to a topic
      • Managing a topic
      • Managing a subscription
    • Configuring logging
    • Overview
    • Mobile push notifications
    • In-browser push notifications
    • SMS
    • Topics
    • Quotas and limits
    • All tools
    • AWS CLI
    • AWS SDK for C++
    • AWS SDK for Go
    • AWS SDK for Java
    • AWS SDK for JavaScript
    • AWS SDK for Kotlin
    • AWS SDK for .NET
    • AWS SDK for PHP
    • AWS SDK for Python (boto3)
  • Pricing policy
  • Monitoring metrics
  • Logs Cloud Logging
  • Release notes
  1. Step-by-step operations
  2. Topics
  3. Sending a notification to a topic

Sending a notification to a topic

Written by
Yandex Cloud
Updated at September 12, 2025
Management console
AWS CLI
AWS SDK for Python
  1. Select the topic.

  2. Click Send notification.

  3. Select a notification type:

    • Same: To send the same notification to all channel types.
    • Different: To enter different texts for different channel types.
  4. Enter the same text for all channels, or different texts for different channel types, in JSON format. If a channel is not specified, the notification will contain the default message text.

    Notification format in JSON:

    {
      "default": "<Default_text>",
      "sms": "<Notification_text_for_sms>",
      "WEB": "<Notification_text_for_bowser>",
      "APNS": {
        "aps": {
          "alert": {
            "title": "Notification_title",
            "body": "Notification_text"
          }
        }
      },
      "GCM": {
        "notification": {
          "title": "Notification_title",
          "body": "Notification_text"
        }
      },
      "HMS": {
        "notification": {
          "title": "Notification_title",
          "body": "<Notification_text>"
        }
      },
      "RUSTORE": {
        "notification": {
          "title": "Notification_title",
          "body": "<Notification_text>"
        }
      }
    }
    
  5. Click Send.

  1. If you do not have the AWS CLI yet, install and configure it.

  2. Run this command:

    To send a notification:

    aws sns publish \
    --topic-arn <topic_ARN> \
    --message-structure json \
    --message '{"default": "<notification_text>","APNS": {"aps":{"alert":"<notification_text>"}},"GCM": {"notification":{"body":"<notification_text>"}},"HMS": {"notification":{"body":"<notification_text>"}},"RUSTORE": {"notification":{"body":"<notification_text>"}},"WEB": "<notification_text>","sms": "<notification_text>"}'
    

    Where:

    • topic-arn: Topic ARN.
    • message-structure: Message format (json).
    • message: Notification text or path to the notification file. To send different notifications depending on channel type, specify the channel and notification text: If some channel is not specified, the default message will be sent.

    For more information about the aws sns publish command, see the AWS documentation.

  1. If you do not have the AWS SDK for Python (boto3) yet, install and configure it.

  2. To create a push notification channel, use the following code:

    try:
        response = client.publish(
            TopicArn="<topic_ARN>",
            Message=json.dumps({
                "default": "<notification_text>",
                "APNS": {"aps":{"alert":"<notification_text>"}},
                "GCM": {"notification":{"body":"<notification_text>"}},
                "HMS": {"notification":{"body":"<notification_text>"}},
                "RUSTORE": {"notification":{"body":"<notification_text>"}},
                "WEB": "<notification_text>",
                "sms": "<notification_text>"
            }),
            MessageStructure="json"
        )
        print(f"Message ID: {response["MessageId"]}")
    except botocore.exceptions.ClientError as error:
        print(f"Error: {error}")
    

    Where:

    • TopicArn: Topic ARN.
    • Message: Notification text. You can add the same text for all channel types or different texts for each channel type. If a channel is not specified, the notification will contain the default message text.
    • MessageStructure: Message format (json).

Was the article helpful?

Previous
Creating a subscription to a topic
Next
Managing a topic
© 2025 Direct Cursus Technology L.L.C.