Amazon Cognito · Schema

UICustomizationType

A container for the UI customization information for a user pool's built-in app UI.

AuthenticationIdentityOAuthOIDCSAMLUser ManagementFederated Identity

Properties

Name Type Description
UserPoolId object
ClientId object
ImageUrl object
CSS object
CSSVersion object
LastModifiedDate object
CreationDate object
View JSON Schema on GitHub

JSON Schema

user-pools-ui-customization-type-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-ui-customization-type-schema.json",
  "title": "UICustomizationType",
  "description": "A container for the UI customization information for a user pool's built-in app UI.",
  "type": "object",
  "properties": {
    "UserPoolId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserPoolIdType"
        },
        {
          "description": "The user pool ID for the user pool."
        }
      ]
    },
    "ClientId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ClientIdType"
        },
        {
          "description": "The client ID for the client app."
        }
      ]
    },
    "ImageUrl": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ImageUrlType"
        },
        {
          "description": "The logo image for the UI customization."
        }
      ]
    },
    "CSS": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CSSType"
        },
        {
          "description": "The CSS values in the UI customization."
        }
      ]
    },
    "CSSVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CSSVersionType"
        },
        {
          "description": "The CSS version number."
        }
      ]
    },
    "LastModifiedDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DateType"
        },
        {
          "description": "The date and time, in <a href=\"https://www.iso.org/iso-8601-date-and-time-format.html\">ISO 8601</a> format, when the item was modified."
        }
      ]
    },
    "CreationDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DateType"
        },
        {
          "description": "The date and time, in <a href=\"https://www.iso.org/iso-8601-date-and-time-format.html\">ISO 8601</a> format, when the item was created."
        }
      ]
    }
  }
}