Amazon Cognito · Schema

AccountTakeoverActionType

Account takeover action type.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
Notify object
EventAction object
View JSON Schema on GitHub

JSON Schema

user-pools-account-takeover-action-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-account-takeover-action-type-schema.json",
  "title": "AccountTakeoverActionType",
  "description": "Account takeover action type.",
  "type": "object",
  "properties": {
    "Notify": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountTakeoverActionNotifyType"
        },
        {
          "description": "Flag specifying whether to send a notification."
        }
      ]
    },
    "EventAction": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountTakeoverEventActionType"
        },
        {
          "description": "<p>The action to take in response to the account takeover action. Valid values are as follows:</p> <ul> <li> <p> <code>BLOCK</code> Choosing this action will block the request.</p> </li> <li> <p> <code>MFA_IF_CONFIGURED</code> Present an MFA challenge if user has configured it, else allow the request.</p> </li> <li> <p> <code>MFA_REQUIRED</code> Present an MFA challenge if user has configured it, else block the request.</p> </li> <li> <p> <code>NO_ACTION</code> Allow the user to sign in.</p> </li> </ul>"
        }
      ]
    }
  },
  "required": [
    "Notify",
    "EventAction"
  ]
}