Steve
Steve

Reputation: 115

How to get list of kinesis streams with cli command

I want to get list of kinesis streams using cli command

aws kinesis list-streams

gives me list of all kinesis stream, How can I filter it using cli command?

Upvotes: 1

Views: 1406

Answers (1)

tejas patil
tejas patil

Reputation: 11

Describe Specific stream aws kinesis describe-stream --stream-name stream name

List All Streams aws kinesis list-streams

Filter Stream from the list aws kinesis list-streams | grep "Stream Name"

Upvotes: 1

Related Questions