Amazon Cognito · Schema

AccountTakeoverActionsType

Account takeover actions type.

AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

Properties

Name Type Description
LowAction object
MediumAction object
HighAction object
View JSON Schema on GitHub

JSON Schema

cognito-idp-account-takeover-actions-type-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "LowAction": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountTakeoverActionType"
        },
        {
          "description": "Action to take for a low risk."
        }
      ]
    },
    "MediumAction": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountTakeoverActionType"
        },
        {
          "description": "Action to take for a medium risk."
        }
      ]
    },
    "HighAction": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountTakeoverActionType"
        },
        {
          "description": "Action to take for a high risk."
        }
      ]
    }
  },
  "description": "Account takeover actions type.",
  "$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-account-takeover-actions-type-schema.json",
  "title": "AccountTakeoverActionsType"
}