1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeStream`](crate::operation::describe_stream::builders::DescribeStreamFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`stream_id(impl Into<String>)`](crate::operation::describe_stream::builders::DescribeStreamFluentBuilder::stream_id) / [`set_stream_id(Option<String>)`](crate::operation::describe_stream::builders::DescribeStreamFluentBuilder::set_stream_id):<br>required: **true**<br><p>The stream ID.</p><br>
    /// - On success, responds with [`DescribeStreamOutput`](crate::operation::describe_stream::DescribeStreamOutput) with field(s):
    ///   - [`stream_info(Option<StreamInfo>)`](crate::operation::describe_stream::DescribeStreamOutput::stream_info): <p>Information about the stream.</p>
    /// - On failure, responds with [`SdkError<DescribeStreamError>`](crate::operation::describe_stream::DescribeStreamError)
    pub fn describe_stream(&self) -> crate::operation::describe_stream::builders::DescribeStreamFluentBuilder {
        crate::operation::describe_stream::builders::DescribeStreamFluentBuilder::new(self.handle.clone())
    }
}