Filter to streams whose names lexicographically start after this string. Must be greater than or equal to the prefix if specified.Used for pagination - pass the last stream name from the previous page to get the next page of results.
# First requestcurl -X GET 'https://{basin}.b.aws.s2.dev/v1/streams?limit=1000' \ -H 'S2-Basin: my-basin'# If has_more is true, get next pagecurl -X GET 'https://{basin}.b.aws.s2.dev/v1/streams?start_after=last-stream-name&limit=1000' \ -H 'S2-Basin: my-basin'