Amazon Cognito · Schema

UICustomizationType

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

AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

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

cognito-idp-ui-customization-type-schema.json Raw ↑
{
  "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 last-modified date for the UI customization."
        }
      ]
    },
    "CreationDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DateType"
        },
        {
          "description": "The creation date for the UI customization."
        }
      ]
    }
  },
  "description": "A container for the UI customization information for a user pool's built-in app UI.",
  "$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-ui-customization-type-schema.json",
  "title": "UICustomizationType"
}