Amazon Cognito · JSON Structure

Cognito Idp Provider User Identifier Type Structure

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

Type: object Properties: 3
AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

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

Properties

ProviderName ProviderAttributeName ProviderAttributeValue

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

JSON Structure

Raw ↑
{
  "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>."
        }
      ]
    }
  },
  "description": "A container for information about an IdP for a user pool.",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-structure/cognito-idp-provider-user-identifier-type-structure.json",
  "name": "ProviderUserIdentifierType"
}