{
"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 MaxResults to 0, or if you don't include a MaxResults parameter."
}
]
},
"NextToken": {
"allOf": [
{
"$ref": "#/components/schemas/PaginationKey"
},
{
"description": "A pagination token."
}
]
}
},
"required": [
"UserPoolId",
"Username"
],
"$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-admin-list-user-auth-events-request-schema.json",
"title": "AdminListUserAuthEventsRequest",
"description": "AdminListUserAuthEventsRequest schema from Amazon Cognito"
}