Amazon Cognito · Schema

AdminCreateUserResponse

Represents the response from the server to the request to create the user.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
User object
View JSON Schema on GitHub

JSON Schema

user-pools-admin-create-user-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cognito/refs/heads/main/json-schema/user-pools-admin-create-user-response-schema.json",
  "title": "AdminCreateUserResponse",
  "description": "Represents the response from the server to the request to create the user.",
  "type": "object",
  "properties": {
    "User": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserType"
        },
        {
          "description": "The newly created user."
        }
      ]
    }
  }
}