You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CognitoIdentity::Types::UnlinkIdentityInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UnlinkIdentityInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  identity_id: "IdentityId", # required
  logins: { # required
    "IdentityProviderName" => "IdentityProviderToken",
  },
  logins_to_remove: ["IdentityProviderName"], # required
}

Input to the UnlinkIdentity action.

Instance Attribute Summary collapse

Instance Attribute Details

#identity_idString

A unique identifier in the format REGION:GUID.

Returns:

  • (String)

    A unique identifier in the format REGION:GUID.

#loginsHash<String,String>

A set of optional name-value pairs that map provider names to provider tokens.

Returns:

  • (Hash<String,String>)

    A set of optional name-value pairs that map provider names to provider tokens.

#logins_to_removeArray<String>

Provider names to unlink from this identity.

Returns:

  • (Array<String>)

    Provider names to unlink from this identity.