1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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):<br>required: **true**<br><p>A unique identifier in the format REGION:GUID.</p><br>
    ///   - [`logins(impl Into<String>, impl Into<String>)`](crate::operation::unlink_identity::builders::UnlinkIdentityFluentBuilder::logins) / [`set_logins(Option<HashMap::<String, String>>)`](crate::operation::unlink_identity::builders::UnlinkIdentityFluentBuilder::set_logins):<br>required: **true**<br><p>A set of optional name-value pairs that map provider names to provider tokens.</p><br>
    ///   - [`logins_to_remove(impl Into<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):<br>required: **true**<br><p>Provider names to unlink from this identity.</p><br>
    /// - 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())
    }
}