Queries stream information about all tables in an instance.

Request syntax

message ListStreamRequest {
    optional string table_name = 1;
}
            
Parameter Type Required Description
table_name string No The name of the table to which the stream belongs.

Response syntax

message ListStreamResponse {
    repeated Stream streams = 1;
}

message Stream {
    required string stream_id = 1;
    required string table_name = 2;
    required int64 creation_time = 3;
}
            
Parameter Type Description
stream_id string The ID of the stream.
table_name string The name of the table to which the stream belongs.
creation_time int64 The time when the stream was created.

Use Tablestore SDKs

Tablestore SDK for Java: ListStream