1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeStreamSummary`](crate::operation::describe_stream_summary::builders::DescribeStreamSummaryFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`stream_name(impl Into<String>)`](crate::operation::describe_stream_summary::builders::DescribeStreamSummaryFluentBuilder::stream_name) / [`set_stream_name(Option<String>)`](crate::operation::describe_stream_summary::builders::DescribeStreamSummaryFluentBuilder::set_stream_name):<br>required: **false**<br><p>The name of the stream to describe.</p><br>
    ///   - [`stream_arn(impl Into<String>)`](crate::operation::describe_stream_summary::builders::DescribeStreamSummaryFluentBuilder::stream_arn) / [`set_stream_arn(Option<String>)`](crate::operation::describe_stream_summary::builders::DescribeStreamSummaryFluentBuilder::set_stream_arn):<br>required: **false**<br><p>The ARN of the stream.</p><br>
    /// - On success, responds with [`DescribeStreamSummaryOutput`](crate::operation::describe_stream_summary::DescribeStreamSummaryOutput) with field(s):
    ///   - [`stream_description_summary(Option<StreamDescriptionSummary>)`](crate::operation::describe_stream_summary::DescribeStreamSummaryOutput::stream_description_summary): <p>A <code>StreamDescriptionSummary</code> containing information about the stream.</p>
    /// - On failure, responds with [`SdkError<DescribeStreamSummaryError>`](crate::operation::describe_stream_summary::DescribeStreamSummaryError)
    pub fn describe_stream_summary(&self) -> crate::operation::describe_stream_summary::builders::DescribeStreamSummaryFluentBuilder {
        crate::operation::describe_stream_summary::builders::DescribeStreamSummaryFluentBuilder::new(self.handle.clone())
    }
}