Amazon Cognito · JSON Structure

User Pools Account Takeover Actions Type Structure

Account takeover actions type.

Type: object Properties: 3
AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

AccountTakeoverActionsType is a JSON Structure definition published by Amazon Cognito, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

LowAction MediumAction HighAction

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cognito/refs/heads/main/json-structure/user-pools-account-takeover-actions-type-structure.json",
  "name": "AccountTakeoverActionsType",
  "description": "Account takeover actions type.",
  "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."
        }
      ]
    }
  }
}