Amazon Cognito · Schema

AddCustomAttributesRequest

Represents the request to add custom attributes.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
UserPoolId object
CustomAttributes object
View JSON Schema on GitHub

JSON Schema

user-pools-add-custom-attributes-request-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-add-custom-attributes-request-schema.json",
  "title": "AddCustomAttributesRequest",
  "description": "Represents the request to add custom attributes.",
  "type": "object",
  "properties": {
    "UserPoolId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserPoolIdType"
        },
        {
          "description": "The user pool ID for the user pool where you want to add custom attributes."
        }
      ]
    },
    "CustomAttributes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CustomAttributesListType"
        },
        {
          "description": "An array of custom attributes, such as Mutable and Name."
        }
      ]
    }
  },
  "required": [
    "UserPoolId",
    "CustomAttributes"
  ]
}