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 [`DescribeUserPoolClient`](crate::operation::describe_user_pool_client::builders::DescribeUserPoolClientFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`user_pool_id(impl Into<String>)`](crate::operation::describe_user_pool_client::builders::DescribeUserPoolClientFluentBuilder::user_pool_id) / [`set_user_pool_id(Option<String>)`](crate::operation::describe_user_pool_client::builders::DescribeUserPoolClientFluentBuilder::set_user_pool_id):<br>required: **true**<br><p>The user pool ID for the user pool you want to describe.</p><br>
    ///   - [`client_id(impl Into<String>)`](crate::operation::describe_user_pool_client::builders::DescribeUserPoolClientFluentBuilder::client_id) / [`set_client_id(Option<String>)`](crate::operation::describe_user_pool_client::builders::DescribeUserPoolClientFluentBuilder::set_client_id):<br>required: **true**<br><p>The app client ID of the app associated with the user pool.</p><br>
    /// - On success, responds with [`DescribeUserPoolClientOutput`](crate::operation::describe_user_pool_client::DescribeUserPoolClientOutput) with field(s):
    ///   - [`user_pool_client(Option<UserPoolClientType>)`](crate::operation::describe_user_pool_client::DescribeUserPoolClientOutput::user_pool_client): <p>The user pool client from a server response to describe the user pool client.</p>
    /// - On failure, responds with [`SdkError<DescribeUserPoolClientError>`](crate::operation::describe_user_pool_client::DescribeUserPoolClientError)
    pub fn describe_user_pool_client(&self) -> crate::operation::describe_user_pool_client::builders::DescribeUserPoolClientFluentBuilder {
        crate::operation::describe_user_pool_client::builders::DescribeUserPoolClientFluentBuilder::new(self.handle.clone())
    }
}