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 [`DescribeUserPool`](crate::operation::describe_user_pool::builders::DescribeUserPoolFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`user_pool_id(impl Into<String>)`](crate::operation::describe_user_pool::builders::DescribeUserPoolFluentBuilder::user_pool_id) / [`set_user_pool_id(Option<String>)`](crate::operation::describe_user_pool::builders::DescribeUserPoolFluentBuilder::set_user_pool_id):<br>required: **true**<br><p>The user pool ID for the user pool you want to describe.</p><br>
    /// - On success, responds with [`DescribeUserPoolOutput`](crate::operation::describe_user_pool::DescribeUserPoolOutput) with field(s):
    ///   - [`user_pool(Option<UserPoolType>)`](crate::operation::describe_user_pool::DescribeUserPoolOutput::user_pool): <p>The container of metadata returned by the server to describe the pool.</p>
    /// - On failure, responds with [`SdkError<DescribeUserPoolError>`](crate::operation::describe_user_pool::DescribeUserPoolError)
    pub fn describe_user_pool(&self) -> crate::operation::describe_user_pool::builders::DescribeUserPoolFluentBuilder {
        crate::operation::describe_user_pool::builders::DescribeUserPoolFluentBuilder::new(self.handle.clone())
    }
}