1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UnlinkIdentity`](crate::operation::unlink_identity::builders::UnlinkIdentityFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`identity_id(impl Into<String>)`](crate::operation::unlink_identity::builders::UnlinkIdentityFluentBuilder::identity_id) / [`set_identity_id(Option<String>)`](crate::operation::unlink_identity::builders::UnlinkIdentityFluentBuilder::set_identity_id): <p>A unique identifier in the format REGION:GUID.</p>
    ///   - [`logins(HashMap<String, String>)`](crate::operation::unlink_identity::builders::UnlinkIdentityFluentBuilder::logins) / [`set_logins(Option<HashMap<String, String>>)`](crate::operation::unlink_identity::builders::UnlinkIdentityFluentBuilder::set_logins): <p>A set of optional name-value pairs that map provider names to provider tokens.</p>
    ///   - [`logins_to_remove(Vec<String>)`](crate::operation::unlink_identity::builders::UnlinkIdentityFluentBuilder::logins_to_remove) / [`set_logins_to_remove(Option<Vec<String>>)`](crate::operation::unlink_identity::builders::UnlinkIdentityFluentBuilder::set_logins_to_remove): <p>Provider names to unlink from this identity.</p>
    /// - On success, responds with [`UnlinkIdentityOutput`](crate::operation::unlink_identity::UnlinkIdentityOutput)
    /// - On failure, responds with [`SdkError<UnlinkIdentityError>`](crate::operation::unlink_identity::UnlinkIdentityError)
    pub fn unlink_identity(
        &self,
    ) -> crate::operation::unlink_identity::builders::UnlinkIdentityFluentBuilder {
        crate::operation::unlink_identity::builders::UnlinkIdentityFluentBuilder::new(
            self.handle.clone(),
        )
    }
}