aws_sdk_verifiedpermissions/client/delete_identity_source.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 [`DeleteIdentitySource`](crate::operation::delete_identity_source::builders::DeleteIdentitySourceFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`policy_store_id(impl Into<String>)`](crate::operation::delete_identity_source::builders::DeleteIdentitySourceFluentBuilder::policy_store_id) / [`set_policy_store_id(Option<String>)`](crate::operation::delete_identity_source::builders::DeleteIdentitySourceFluentBuilder::set_policy_store_id):<br>required: **true**<br><p>Specifies the ID of the policy store that contains the identity source that you want to delete.</p><br>
7 /// - [`identity_source_id(impl Into<String>)`](crate::operation::delete_identity_source::builders::DeleteIdentitySourceFluentBuilder::identity_source_id) / [`set_identity_source_id(Option<String>)`](crate::operation::delete_identity_source::builders::DeleteIdentitySourceFluentBuilder::set_identity_source_id):<br>required: **true**<br><p>Specifies the ID of the identity source that you want to delete.</p><br>
8 /// - On success, responds with [`DeleteIdentitySourceOutput`](crate::operation::delete_identity_source::DeleteIdentitySourceOutput)
9 /// - On failure, responds with [`SdkError<DeleteIdentitySourceError>`](crate::operation::delete_identity_source::DeleteIdentitySourceError)
10 pub fn delete_identity_source(&self) -> crate::operation::delete_identity_source::builders::DeleteIdentitySourceFluentBuilder {
11 crate::operation::delete_identity_source::builders::DeleteIdentitySourceFluentBuilder::new(self.handle.clone())
12 }
13}