Amazon Cognito · Schema

GetOpenIdTokenInput

Input to the GetOpenIdToken action.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

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

JSON Schema

identity-pools-get-open-id-token-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-get-open-id-token-input-schema.json",
  "title": "GetOpenIdTokenInput",
  "description": "Input to the GetOpenIdToken action.",
  "type": "object",
  "properties": {
    "IdentityId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IdentityId"
        },
        {
          "description": "A unique identifier in the format REGION:GUID."
        }
      ]
    },
    "Logins": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LoginsMap"
        },
        {
          "description": "A set of optional name-value pairs that map provider names to provider tokens. When using graph.facebook.com and www.amazon.com, supply the access_token returned from the provider's authflow. For accounts.google.com, an Amazon Cognito user pool provider, or any other OpenID Connect provider, always include the <code>id_token</code>."
        }
      ]
    }
  },
  "required": [
    "IdentityId"
  ]
}