Amazon Cognito · JSON Structure

Cognito Idp Set Ui Customization Request Structure

SetUICustomizationRequest schema from Amazon Cognito

Type: object Properties: 4 Required: 1
AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

SetUICustomizationRequest is a JSON Structure definition published by Amazon Cognito, describing 4 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

UserPoolId ClientId CSS ImageFile

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

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."
        }
      ]
    },
    "CSS": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CSSType"
        },
        {
          "description": "The CSS values in the UI customization."
        }
      ]
    },
    "ImageFile": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ImageFileType"
        },
        {
          "description": "The uploaded logo image for the UI customization."
        }
      ]
    }
  },
  "required": [
    "UserPoolId"
  ],
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-cognito/refs/heads/main/json-structure/cognito-idp-set-ui-customization-request-structure.json",
  "name": "SetUICustomizationRequest",
  "description": "SetUICustomizationRequest schema from Amazon Cognito"
}