AWS CLI
Written by
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.
-
In the management console
, select the folder containing your data stream. -
Select Data Streams.
-
Select the data stream.
-
Click Connect and navigate to the AWS CLI tab.
-
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 1Result:
{ "ShardId": "shard-000001", "SequenceNumber": "3130", "EncryptionType": "NONE" }