// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListStreams`](crate::operation::list_streams::builders::ListStreamsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_streams::builders::ListStreamsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`filter_by(StreamFilters)`](crate::operation::list_streams::builders::ListStreamsFluentBuilder::filter_by) / [`set_filter_by(Option<StreamFilters>)`](crate::operation::list_streams::builders::ListStreamsFluentBuilder::set_filter_by):<br>required: **false**<br><p>Filters the stream list to match the specified criterion.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_streams::builders::ListStreamsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_streams::builders::ListStreamsFluentBuilder::set_next_token):<br>required: **false**<br><p>The first stream to retrieve. This is used for pagination; see the <code>nextToken</code> response field.</p><br>
/// - [`max_results(i32)`](crate::operation::list_streams::builders::ListStreamsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_streams::builders::ListStreamsFluentBuilder::set_max_results):<br>required: **false**<br><p>Maximum number of streams to return. Default: 100.</p><br>
/// - On success, responds with [`ListStreamsOutput`](crate::operation::list_streams::ListStreamsOutput) with field(s):
/// - [`streams(Vec::<StreamSummary>)`](crate::operation::list_streams::ListStreamsOutput::streams): <p>List of streams.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_streams::ListStreamsOutput::next_token): <p>If there are more streams than <code>maxResults</code>, use <code>nextToken</code> in the request to get the next set.</p>
/// - On failure, responds with [`SdkError<ListStreamsError>`](crate::operation::list_streams::ListStreamsError)
pub fn list_streams(&self) -> crate::operation::list_streams::builders::ListStreamsFluentBuilder {
crate::operation::list_streams::builders::ListStreamsFluentBuilder::new(self.handle.clone())
}
}