Amazon Cognito · Schema

AdminDisableProviderForUserRequest

AdminDisableProviderForUserRequest schema from Amazon Cognito

AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

Properties

Name Type Description
UserPoolId object
User object
View JSON Schema on GitHub

JSON Schema

cognito-idp-admin-disable-provider-for-user-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "UserPoolId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StringType"
        },
        {
          "description": "The user pool ID for the user pool."
        }
      ]
    },
    "User": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ProviderUserIdentifierType"
        },
        {
          "description": "The user to be disabled."
        }
      ]
    }
  },
  "required": [
    "UserPoolId",
    "User"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-schema/cognito-idp-admin-disable-provider-for-user-request-schema.json",
  "title": "AdminDisableProviderForUserRequest",
  "description": "AdminDisableProviderForUserRequest schema from Amazon Cognito"
}