aws_sdk_verifiedpermissions/client/
delete_identity_source.rs

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 [`DeleteIdentitySource`](crate::operation::delete_identity_source::builders::DeleteIdentitySourceFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`DeleteIdentitySourceOutput`](crate::operation::delete_identity_source::DeleteIdentitySourceOutput)
    /// - On failure, responds with [`SdkError<DeleteIdentitySourceError>`](crate::operation::delete_identity_source::DeleteIdentitySourceError)
    pub fn delete_identity_source(&self) -> crate::operation::delete_identity_source::builders::DeleteIdentitySourceFluentBuilder {
        crate::operation::delete_identity_source::builders::DeleteIdentitySourceFluentBuilder::new(self.handle.clone())
    }
}