Amazon Cognito · JSON Structure

Cognito Idp Admin Disable Provider For User Request Structure

AdminDisableProviderForUserRequest schema from Amazon Cognito

Type: object Properties: 2 Required: 2
AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

AdminDisableProviderForUserRequest is a JSON Structure definition published by Amazon Cognito, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

UserPoolId User

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

JSON Structure

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-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-structure/cognito-idp-admin-disable-provider-for-user-request-structure.json",
  "name": "AdminDisableProviderForUserRequest",
  "description": "AdminDisableProviderForUserRequest schema from Amazon Cognito"
}