Amazon Cognito · JSON Structure

Cognito Identity Get Open Id Token Response Structure

Returned in response to a successful GetOpenIdToken request.

Type: object Properties: 2
AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

GetOpenIdTokenResponse is a JSON Structure definition published by Amazon Cognito, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

IdentityId Token

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

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "IdentityId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdentityId"
        },
        {
          "description": "A unique identifier in the format REGION:GUID. Note that the IdentityId returned may not match the one passed on input."
        }
      ]
    },
    "Token": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OIDCToken"
        },
        {
          "description": "An OpenID token, valid for 10 minutes."
        }
      ]
    }
  },
  "description": "Returned in response to a successful GetOpenIdToken request.",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-structure/cognito-identity-get-open-id-token-response-structure.json",
  "name": "GetOpenIdTokenResponse"
}