Yandex Cloud
Search
Contact UsTry it for free
  • 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
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2025 Direct Cursus Technology L.L.C.
Yandex Data Streams
    • Preparing the environment
    • Creating a data stream
      • Fluentd
      • Logstash
      • AWS CLI
    • Debezium Change Data Capture (CDC) stream processing
  • Access management
  • Pricing policy
  • FAQ
  1. Getting started
  2. Data collection and delivery
  3. AWS CLI

AWS CLI

Written by
Yandex Cloud
Updated at August 15, 2025

Note

You can create a trigger that will invoke a function in Cloud Functions or run a container in Serverless Containers when data is sent to a stream. Read more about triggers for Data Streams.

  1. In the management console, select the folder containing your data stream.

  2. Select Data Streams.

  3. Select the data stream.

  4. Click Connect and navigate to the AWS CLI tab.

  5. Copy and run the example command to send a message. Data delivery will be performed via AWS Kinesis Data Streams.

    Example command:

    aws kinesis \
      --endpoint https://yds.serverless.yandexcloud.net \
      put-record \
      --stream-name /ru-central1/aoegtvhtp8ob********/cc8004q4lbo6********/test \
      --cli-binary-format raw-in-base64-out \
      --data '{"user_id":"user1", "score": 100}' \
      --partition-key 1
    

    Result:

    {
       "ShardId": "shard-000001",
       "SequenceNumber": "3130",
       "EncryptionType": "NONE"
    }
    

Was the article helpful?

Previous
Logstash
Next
Debezium Change Data Capture (CDC) stream processing
© 2025 Direct Cursus Technology L.L.C.