Amazon Cognito · Schema

GetOpenIdTokenForDeveloperIdentityResponse

Returned in response to a successful GetOpenIdTokenForDeveloperIdentity request.

AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

Properties

Name Type Description
IdentityId object
Token object
View JSON Schema on GitHub

JSON Schema

cognito-identity-get-open-id-token-for-developer-identity-response-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "IdentityId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdentityId"
        },
        {
          "description": "A unique identifier in the format REGION:GUID."
        }
      ]
    },
    "Token": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OIDCToken"
        },
        {
          "description": "An OpenID token."
        }
      ]
    }
  },
  "description": "Returned in response to a successful <code>GetOpenIdTokenForDeveloperIdentity</code> request.",
  "$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-get-open-id-token-for-developer-identity-response-schema.json",
  "title": "GetOpenIdTokenForDeveloperIdentityResponse"
}