aws.kinesis.list_stream_consumers
Example SQL Queries
SELECT * FROMaws.kinesis.list_stream_consumersWHERE"stream_arn" = 'VALUE';Description
Lists the consumers registered to receive data from a stream using enhanced fan-out, and provides information about each consumer.
This operation has a limit of 5 transactions per second per stream.
Table Definition
| Column Name | Column Data Type |
|---|---|
| stream_arn Required Input Column The ARN of the Kinesis data stream for which you want to list the registered consumers. For more information, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces. | VARCHAR |
| stream_creation_timestamp Input Column Specify this input parameter to distinguish data streams that have the same name. For example, if you create a data stream and then delete it, and you later create another data stream with the same name, you can use this input parameter to specify which of the two streams you want to list the consumers for. You can't specify this parameter if you specify the NextToken parameter. | TIMESTAMP_S |
| _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 |
| consumer_arn When you register a consumer, Kinesis Data Streams generates an ARN for it. You need this ARN to be able to call SubscribeToShard. If you delete a consumer and then create a new one with the same name, it won't have the same ARN. That's because consumer ARNs contain the creation timestamp. This is important to keep in mind if you have IAM policies that reference consumer ARNs. | VARCHAR |
| consumer_creation_timestamp | TIMESTAMP_S |
| consumer_name The name of the consumer is something you choose when you register the consumer. | VARCHAR |
| consumer_status A consumer can't read data while in the CREATING or DELETING states. | VARCHAR |