{
"type": "object",
"properties": {
"UserPoolId": {
"allOf": [
{
"$ref": "#/components/schemas/UserPoolIdType"
},
{
"description": "The user pool ID for the user pool where you want to delete the user."
}
]
},
"Username": {
"allOf": [
{
"$ref": "#/components/schemas/UsernameType"
},
{
"description": "The user name of the user you want to delete."
}
]
}
},
"required": [
"UserPoolId",
"Username"
],
"description": "Represents the request to delete a user as an administrator.",
"$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-delete-user-request-schema.json",
"title": "AdminDeleteUserRequest"
}