Bootstrap FreeKB - Amazon Web Services (AWS) - List Kinesis Data Streams using the AWS CLI
Amazon Web Services (AWS) - List Kinesis Data Streams using the AWS CLI


This assumes you have already configured the aws command line tool. If not, check out my article on Getting Started with the AWS CLI.

This also assumes you are familiar with Kinesis. If not, check out my article Getting Started with Kinesis.

The aws kinesis list-stream command can be used to list your Kinesis Data Stream.

~]$ aws kinesis list-streams
{
    "StreamNames": [
        "my-kinesis-data-stream"
    ],
    "StreamSummaries": [
        {
            "StreamName": "my-kinesis-data-stream",
            "StreamARN": "arn:aws:kinesis:us-east-1:123456789012:stream/my-kinesis-data-stream",
            "StreamStatus": "ACTIVE",
            "StreamModeDetails": {
                "StreamMode": "ON_DEMAND"
            },
            "StreamCreationTimestamp": "2024-05-15T01:13:06+00:00"
        }
    ]
}

 

Likewise, you should also be able to see your Kinesis Data Streams in the AWS Console.




Did you find this article helpful?

If so, consider buying me a coffee over at Buy Me A Coffee



Comments


Add a Comment


Please enter d25a99 in the box below so that we can be sure you are a human.