Safe Haskell | None |
---|---|
Language | Haskell2010 |
Lists your streams.
The number of streams may be too large to return from a single call to ListStreams
. You can limit the number of returned streams using the Limit
parameter. If
you do not specify a value for the Limit
parameter, Amazon Kinesis uses the
default limit, which is currently 10.
You can detect if there are more streams available to list by using the HasMoreStreams
flag from the returned output. If there are more streams available, you can
request more streams by using the name of the last stream returned by the ListStreams
request in the ExclusiveStartStreamName
parameter in a subsequent request to ListStreams
. The group of stream names returned by the subsequent request is
then added to the list. You can continue this process until all the stream
names have been collected in the list.
ListStreams
has a limit of 5 transactions per second per account.
http://docs.aws.amazon.com/kinesis/latest/APIReference/API_ListStreams.html
- data ListStreams
- listStreams :: ListStreams
- lsExclusiveStartStreamName :: Lens' ListStreams (Maybe Text)
- lsLimit :: Lens' ListStreams (Maybe Natural)
- data ListStreamsResponse
- listStreamsResponse :: Bool -> ListStreamsResponse
- lsrHasMoreStreams :: Lens' ListStreamsResponse Bool
- lsrStreamNames :: Lens' ListStreamsResponse [Text]
Request
data ListStreams Source
Request constructor
listStreams :: ListStreams Source
ListStreams
constructor.
The fields accessible through corresponding lenses are:
Request lenses
lsExclusiveStartStreamName :: Lens' ListStreams (Maybe Text) Source
The name of the stream to start the list with.
Response
Response constructor
ListStreamsResponse
constructor.
The fields accessible through corresponding lenses are:
lsrHasMoreStreams
::
Bool
lsrStreamNames
::
[Text
]
Response lenses
lsrHasMoreStreams :: Lens' ListStreamsResponse Bool Source
If set to true
, there are more streams available to list.
lsrStreamNames :: Lens' ListStreamsResponse [Text] Source
The names of the streams that are associated with the AWS account making the ListStreams
request.