AWS App Runner · Schema

CustomDomain

CustomDomain schema from AWS App Runner

CI/CDContainersDeploymentMicroservicesServerless

Properties

Name Type Description
DomainName string
EnableWWWSubdomain boolean
CertificateValidationRecords array
Status string
View JSON Schema on GitHub

JSON Schema

app-runner-custom-domain-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "DomainName": {
      "type": "string"
    },
    "EnableWWWSubdomain": {
      "type": "boolean"
    },
    "CertificateValidationRecords": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "Name": {
            "type": "string"
          },
          "Type": {
            "type": "string"
          },
          "Value": {
            "type": "string"
          },
          "Status": {
            "type": "string",
            "enum": [
              "PENDING_VALIDATION",
              "SUCCESS",
              "FAILED"
            ]
          }
        }
      }
    },
    "Status": {
      "type": "string",
      "enum": [
        "CREATING",
        "CREATE_FAILED",
        "ACTIVE",
        "DELETING",
        "DELETE_FAILED",
        "PENDING_CERTIFICATE_DNS_VALIDATION",
        "BINDING_CERTIFICATE"
      ]
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-app-runner/refs/heads/main/json-schema/app-runner-custom-domain-schema.json",
  "title": "CustomDomain",
  "description": "CustomDomain schema from AWS App Runner"
}