Amazon Cognito · Schema

ListIdentityProvidersResponse

ListIdentityProvidersResponse schema from Amazon Cognito API

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
Providers object
NextToken object
View JSON Schema on GitHub

JSON Schema

user-pools-list-identity-providers-response-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-list-identity-providers-response-schema.json",
  "title": "ListIdentityProvidersResponse",
  "description": "ListIdentityProvidersResponse schema from Amazon Cognito API",
  "type": "object",
  "properties": {
    "Providers": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProvidersListType"
        },
        {
          "description": "A list of IdP objects."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PaginationKeyType"
        },
        {
          "description": "A pagination token."
        }
      ]
    }
  },
  "required": [
    "Providers"
  ]
}