aws.dynamodbstreams.list_streams
Example SQL Queries
SELECT * FROMaws.dynamodbstreams.list_streams;Description
Returns an array of stream ARNs associated with the current account and endpoint. If the TableName parameter is present, then ListStreams will return only the streams ARNs for that table.
You can call ListStreams at a maximum rate of 5 times per second.
Table Definition
| Column Name | Column Data Type |
|---|---|
| exclusive_start_stream_arn Input Column The ARN (Amazon Resource Name) of the first item that this operation will evaluate. Use the value that was returned for LastEvaluatedStreamArn in the previous operation. | VARCHAR |
| limit Input Column The maximum number of streams to return. The upper limit is 100. | BIGINT |
| table_name Input Column If this parameter is provided, then only the streams associated with this table name are returned. | 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
| |
| last_evaluated_stream_arn The stream ARN of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request. If LastEvaluatedStreamArn is empty, then the "last page" of results has been processed and there is no more data to be retrieved. If LastEvaluatedStreamArn is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedStreamArn is empty. | VARCHAR |
| streams A list of stream descriptors associated with the current account and endpoint. | STRUCT( |
Show child fields
| |