ListStreams
Source:
src/AWS/Kinesis/ListStreams.ts
Runtime binding for kinesis:ListStreams.
An account-level operation (no stream argument) that enumerates all
Kinesis streams in the region. Provide the implementation with
Effect.provide(AWS.Kinesis.ListStreamsHttp).
Inspecting Streams
Section titled “Inspecting Streams”// init — account-level binding takes no resourceconst listStreams = yield* AWS.Kinesis.ListStreams();
// runtimeconst result = yield* listStreams();yield* Effect.log(result.StreamNames);