Reputation: 115
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
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