aws.kinesis.describe_stream
Example SQL Queries
SELECT * FROMaws.kinesis.describe_stream;Description
Describes the specified Kinesis data stream.
This API has been revised. It's highly recommended that you use the DescribeStreamSummary API to get a summarized description of the specified Kinesis data stream and the ListShards API to list the shards in a specified data stream and obtain information about each shard.
When invoking this API, you must use either the StreamARN or the StreamName parameter, or both. It is recommended that you use the StreamARN input parameter when you invoke this API.
The information returned includes the stream name, Amazon Resource Name (ARN), creation time, enhanced metric configuration, and shard map. The shard map is an array of shard objects. For each shard object, there is the hash key and sequence number ranges that the shard spans, and the IDs of any earlier shards that played in a role in creating the shard. Every record ingested in the stream is identified by a sequence number, which is assigned when the record is put into the stream.
You can limit the number of shards returned by each call. For more information, see Retrieving Shards from a Stream in the Amazon Kinesis Data Streams Developer Guide.
There are no guarantees about the chronological order shards returned. To process shards in chronological order, use the ID of the parent shard to track the lineage to the oldest shard.
This operation has a limit of 10 transactions per second per account.
Table Definition
| Column Name | Column Data Type |
|---|---|
| stream_arn Input Column The ARN of the stream. | VARCHAR |
| stream_name Input Column The name of the stream to describe. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| adjacent_parent_shard_id The shard ID of the shard adjacent to the shard's parent. | VARCHAR |
| hash_key_range The range of possible hash key values for the shard, which is a set of ordered contiguous positive integers. | STRUCT( |
Show child fields
| |
| parent_shard_id The shard ID of the shard's parent. | VARCHAR |
| sequence_number_range The range of possible sequence numbers for the shard. | STRUCT( |
Show child fields
| |
| shard_id The unique identifier of the shard within the stream. | VARCHAR |