aws kinesis
all
Interact with the Amazon Kinesis Data Streams, a service that scales elastically for real-time processing of streaming big data.
More info →Examples (6)
Show all streams in the account
aws kinesis list-streamsWrite one record to a Kinesis stream
aws kinesis put-record --stream-name name --partition-key key --data base64_encoded_messageWrite a record to a Kinesis stream with inline base64 encoding
aws kinesis put-record --stream-name name --partition-key key --data "$( echo "my raw message" | base64 )"List the shards available on a stream
aws kinesis list-shards --stream-name nameGet a shard iterator for reading from the oldest message in a stream's shard
aws kinesis get-shard-iterator --shard-iterator-type TRIM_HORIZON --stream-name name --shard-id idRead records from a shard, using a shard iterator
aws kinesis get-records --shard-iterator iteratormade by @shridhargupta | data from tldr-pages