listStreams 
  abstract suspend fun listStreams(input: ListStreamsRequest = ListStreamsRequest { }): ListStreamsResponse
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.
Samples
fun main() { 
   //sampleStart 
   // The following example lists all of the stream ARNs.
val resp = dynamoDbStreamsClient.listStreams() 
   //sampleEnd
}