{ "type": "object", "properties": { "Username": { "allOf": [ { "$ref": "#/components/schemas/UsernameType" }, { "description": "The user name of the user about whom you're receiving information." } ] }, "UserAttributes": { "allOf": [ { "$ref": "#/components/schemas/AttributeListType" }, { "description": "An array of name-value pairs representing user attributes." } ] }, "UserCreateDate": { "allOf": [ { "$ref": "#/components/schemas/DateType" }, { "description": "The date the user was created." } ] }, "UserLastModifiedDate": { "allOf": [ { "$ref": "#/components/schemas/DateType" }, { "description": "The date the user was last modified." } ] }, "Enabled": { "allOf": [ { "$ref": "#/components/schemas/BooleanType" }, { "description": "Indicates that the status is enabled." } ] }, "UserStatus": { "allOf": [ { "$ref": "#/components/schemas/UserStatusType" }, { "description": "

The user status. Can be one of the following:

" } ] }, "MFAOptions": { "allOf": [ { "$ref": "#/components/schemas/MFAOptionListType" }, { "description": " This response parameter is no longer supported. It provides information only about SMS MFA configurations. It doesn't provide information about time-based one-time password (TOTP) software token MFA configurations. To look up information about either type of MFA configuration, use UserMFASettingList instead." } ] }, "PreferredMfaSetting": { "allOf": [ { "$ref": "#/components/schemas/StringType" }, { "description": "The user's preferred MFA setting." } ] }, "UserMFASettingList": { "allOf": [ { "$ref": "#/components/schemas/UserMFASettingListType" }, { "description": "The MFA options that are activated for the user. The possible values in this list are SMS_MFA and SOFTWARE_TOKEN_MFA." } ] } }, "required": [ "Username" ], "description": "Represents the response from the server from the request to get the specified 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-get-user-response-schema.json", "title": "AdminGetUserResponse" }