Amazon Cognito · Schema

CompromisedCredentialsRiskConfigurationType

The compromised credentials risk configuration type.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
EventFilter object
Actions object
View JSON Schema on GitHub

JSON Schema

user-pools-compromised-credentials-risk-configuration-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-compromised-credentials-risk-configuration-type-schema.json",
  "title": "CompromisedCredentialsRiskConfigurationType",
  "description": "The compromised credentials risk configuration type.",
  "type": "object",
  "properties": {
    "EventFilter": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EventFiltersType"
        },
        {
          "description": "Perform the action for these events. The default is to perform all events if no event filter is specified."
        }
      ]
    },
    "Actions": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CompromisedCredentialsActionsType"
        },
        {
          "description": "The compromised credentials risk configuration actions."
        }
      ]
    }
  },
  "required": [
    "Actions"
  ]
}