aws_sdk_cognitoidentityprovider/client/
delete_user_pool_client.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`DeleteUserPoolClient`](crate::operation::delete_user_pool_client::builders::DeleteUserPoolClientFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`user_pool_id(impl Into<String>)`](crate::operation::delete_user_pool_client::builders::DeleteUserPoolClientFluentBuilder::user_pool_id) / [`set_user_pool_id(Option<String>)`](crate::operation::delete_user_pool_client::builders::DeleteUserPoolClientFluentBuilder::set_user_pool_id):<br>required: **true**<br><p>The ID of the user pool where you want to delete the client.</p><br>
7    ///   - [`client_id(impl Into<String>)`](crate::operation::delete_user_pool_client::builders::DeleteUserPoolClientFluentBuilder::client_id) / [`set_client_id(Option<String>)`](crate::operation::delete_user_pool_client::builders::DeleteUserPoolClientFluentBuilder::set_client_id):<br>required: **true**<br><p>The ID of the user pool app client that you want to delete.</p><br>
8    /// - On success, responds with [`DeleteUserPoolClientOutput`](crate::operation::delete_user_pool_client::DeleteUserPoolClientOutput)
9    /// - On failure, responds with [`SdkError<DeleteUserPoolClientError>`](crate::operation::delete_user_pool_client::DeleteUserPoolClientError)
10    pub fn delete_user_pool_client(&self) -> crate::operation::delete_user_pool_client::builders::DeleteUserPoolClientFluentBuilder {
11        crate::operation::delete_user_pool_client::builders::DeleteUserPoolClientFluentBuilder::new(self.handle.clone())
12    }
13}