Amazon Cognito · Schema

EventRiskType

The event risk type.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
RiskDecision object
RiskLevel object
CompromisedCredentialsDetected object
View JSON Schema on GitHub

JSON Schema

user-pools-event-risk-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-event-risk-type-schema.json",
  "title": "EventRiskType",
  "description": "The event risk type.",
  "type": "object",
  "properties": {
    "RiskDecision": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RiskDecisionType"
        },
        {
          "description": "The risk decision."
        }
      ]
    },
    "RiskLevel": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RiskLevelType"
        },
        {
          "description": "The risk level."
        }
      ]
    },
    "CompromisedCredentialsDetected": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WrappedBooleanType"
        },
        {
          "description": "Indicates whether compromised credentials were detected during an authentication event."
        }
      ]
    }
  }
}