Learn R Programming

paws.database (version 0.1.7)

dynamodbstreams_list_streams: Returns an array of stream ARNs associated with the current account and endpoint

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.

Usage

dynamodbstreams_list_streams(TableName, Limit, ExclusiveStartStreamArn)

Arguments

TableName

If this parameter is provided, then only the streams associated with this table name are returned.

Limit

The maximum number of streams to return. The upper limit is 100.

ExclusiveStartStreamArn

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.

Request syntax

svc$list_streams(
  TableName = "string",
  Limit = 123,
  ExclusiveStartStreamArn = "string"
)

Details

You can call ListStreams at a maximum rate of 5 times per second.

Examples

Run this code
# NOT RUN {
# The following example lists all of the stream ARNs.
# }
# NOT RUN {
svc$list_streams()
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab