Amazon Cognito · Schema

UnlinkDeveloperIdentityInput

Input to the UnlinkDeveloperIdentity action.

AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

Properties

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

JSON Schema

cognito-identity-unlink-developer-identity-input-schema.json Raw ↑
{
  "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"
  ],
  "description": "Input to the <code>UnlinkDeveloperIdentity</code> action.",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-schema/cognito-identity-unlink-developer-identity-input-schema.json",
  "title": "UnlinkDeveloperIdentityInput"
}