Amazon Cognito · JSON Structure

Identity Pools Unlink Developer Identity Input Structure

Input to the UnlinkDeveloperIdentity action.

Type: object Properties: 4 Required: 4
AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

UnlinkDeveloperIdentityInput is a JSON Structure definition published by Amazon Cognito, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

IdentityId IdentityPoolId DeveloperProviderName DeveloperUserIdentifier

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cognito/refs/heads/main/json-structure/identity-pools-unlink-developer-identity-input-structure.json",
  "name": "UnlinkDeveloperIdentityInput",
  "description": "Input to the <code>UnlinkDeveloperIdentity</code> action.",
  "type": "object",
  "properties": {
    "IdentityId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdentityId"
        },
        {
          "description": "A unique identifier in the format REGION:GUID."
        }
      ]
    },
    "IdentityPoolId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdentityPoolId"
        },
        {
          "description": "An identity pool ID in the format REGION:GUID."
        }
      ]
    },
    "DeveloperProviderName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeveloperProviderName"
        },
        {
          "description": "The \"domain\" by which Cognito will refer to your users."
        }
      ]
    },
    "DeveloperUserIdentifier": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeveloperUserIdentifier"
        },
        {
          "description": "A unique ID used by your backend authentication process to identify a user."
        }
      ]
    }
  },
  "required": [
    "IdentityId",
    "IdentityPoolId",
    "DeveloperProviderName",
    "DeveloperUserIdentifier"
  ]
}