Amazon Cognito · Schema

UnlinkIdentityInput

Input to the UnlinkIdentity action.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
IdentityId object
Logins object
LoginsToRemove object
View JSON Schema on GitHub

JSON Schema

identity-pools-unlink-identity-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cognito/refs/heads/main/json-schema/identity-pools-unlink-identity-input-schema.json",
  "title": "UnlinkIdentityInput",
  "description": "Input to the UnlinkIdentity action.",
  "type": "object",
  "properties": {
    "IdentityId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdentityId"
        },
        {
          "description": "A unique identifier in the format REGION:GUID."
        }
      ]
    },
    "Logins": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LoginsMap"
        },
        {
          "description": "A set of optional name-value pairs that map provider names to provider tokens."
        }
      ]
    },
    "LoginsToRemove": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LoginsList"
        },
        {
          "description": "Provider names to unlink from this identity."
        }
      ]
    }
  },
  "required": [
    "IdentityId",
    "Logins",
    "LoginsToRemove"
  ]
}