aws_sdk_cognitoidentity/client/delete_identity_pool.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 [`DeleteIdentityPool`](crate::operation::delete_identity_pool::builders::DeleteIdentityPoolFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`identity_pool_id(impl Into<String>)`](crate::operation::delete_identity_pool::builders::DeleteIdentityPoolFluentBuilder::identity_pool_id) / [`set_identity_pool_id(Option<String>)`](crate::operation::delete_identity_pool::builders::DeleteIdentityPoolFluentBuilder::set_identity_pool_id):<br>required: **true**<br><p>An identity pool ID in the format REGION:GUID.</p><br>
7 /// - On success, responds with [`DeleteIdentityPoolOutput`](crate::operation::delete_identity_pool::DeleteIdentityPoolOutput)
8 /// - On failure, responds with [`SdkError<DeleteIdentityPoolError>`](crate::operation::delete_identity_pool::DeleteIdentityPoolError)
9 pub fn delete_identity_pool(&self) -> crate::operation::delete_identity_pool::builders::DeleteIdentityPoolFluentBuilder {
10 crate::operation::delete_identity_pool::builders::DeleteIdentityPoolFluentBuilder::new(self.handle.clone())
11 }
12}