Forrest logo
back to context overview

aws-kinesis

List of commands for aws-kinesis:

  • aws-kinesis:tldr:0bae8 aws-kinesis: Write one record to a Kinesis stream.
    $ aws kinesis put-record --stream-name ${name} --partition-key ${key} --data ${base64_encoded_message}
    try on your machine
    explain this command
  • aws-kinesis:tldr:1b434 aws-kinesis: Read records from a shard, using a shard iterator.
    $ aws kinesis get-records --shard-iterator ${iterator}
    try on your machine
    explain this command
  • aws-kinesis:tldr:57097 aws-kinesis: Show all streams in the account.
    $ aws kinesis list-streams
    try on your machine
    explain this command
  • aws-kinesis:tldr:87921 aws-kinesis: List the shards available on a stream.
    $ aws kinesis list-shards --stream-name ${name}
    try on your machine
    explain this command
  • aws-kinesis:tldr:c988a aws-kinesis: Get 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 ${id}
    try on your machine
    explain this command
  • aws-kinesis:tldr:d4727 aws-kinesis: Write 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 )"
    try on your machine
    explain this command
back to context overview