Amazon Cognito · Schema

CustomDomainConfigType

The configuration for a custom domain that hosts the sign-up and sign-in webpages for your application.

AuthenticationAuthorizationIdentityIdentity ProviderOAuth2OIDC

Properties

Name Type Description
CertificateArn object
View JSON Schema on GitHub

JSON Schema

cognito-idp-custom-domain-config-type-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "CertificateArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ArnType"
        },
        {
          "description": "The Amazon Resource Name (ARN) of an Certificate Manager SSL certificate. You use this certificate for the subdomain of your custom domain."
        }
      ]
    }
  },
  "required": [
    "CertificateArn"
  ],
  "description": "The configuration for a custom domain that hosts the sign-up and sign-in webpages for your application.",
  "$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-custom-domain-config-type-schema.json",
  "title": "CustomDomainConfigType"
}