Amazon Cognito · JSON Structure

Cognito Idp Admin List User Auth Events Request Structure

AdminListUserAuthEventsRequest schema from Amazon Cognito

Type: object Properties: 4 Required: 2
AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

AdminListUserAuthEventsRequest is a JSON Structure definition published by Amazon Cognito, describing 4 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

UserPoolId Username MaxResults NextToken

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

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "UserPoolId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserPoolIdType"
        },
        {
          "description": "The user pool ID."
        }
      ]
    },
    "Username": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UsernameType"
        },
        {
          "description": "The user pool username or an alias."
        }
      ]
    },
    "MaxResults": {
      "allOf": [
        {
          "$ref": "#/components/schemas/QueryLimitType"
        },
        {
          "description": "The maximum number of authentication events to return. Returns 60 events if you set <code>MaxResults</code> to 0, or if you don't include a <code>MaxResults</code> parameter."
        }
      ]
    },
    "NextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PaginationKey"
        },
        {
          "description": "A pagination token."
        }
      ]
    }
  },
  "required": [
    "UserPoolId",
    "Username"
  ],
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-structure/cognito-idp-admin-list-user-auth-events-request-structure.json",
  "name": "AdminListUserAuthEventsRequest",
  "description": "AdminListUserAuthEventsRequest schema from Amazon Cognito"
}