Amazon Cognito · Schema

ProviderUserIdentifierType

A container for information about an IdP for a user pool.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
ProviderName object
ProviderAttributeName object
ProviderAttributeValue object
View JSON Schema on GitHub

JSON Schema

user-pools-provider-user-identifier-type-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/user-pools-provider-user-identifier-type-schema.json",
  "title": "ProviderUserIdentifierType",
  "description": "A container for information about an IdP for a user pool.",
  "type": "object",
  "properties": {
    "ProviderName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProviderNameType"
        },
        {
          "description": "The name of the provider, such as Facebook, Google, or Login with Amazon."
        }
      ]
    },
    "ProviderAttributeName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StringType"
        },
        {
          "description": "The name of the provider attribute to link to, such as <code>NameID</code>."
        }
      ]
    },
    "ProviderAttributeValue": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StringType"
        },
        {
          "description": "The value of the provider attribute to link to, such as <code>xxxxx_account</code>."
        }
      ]
    }
  }
}