Amazon Cognito · Schema

UnlinkDeveloperIdentityInput

Input to the UnlinkDeveloperIdentity action.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
IdentityId object
IdentityPoolId object
DeveloperProviderName object
DeveloperUserIdentifier object
View JSON Schema on GitHub

JSON Schema

identity-pools-unlink-developer-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-developer-identity-input-schema.json",
  "title": "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"
  ]
}