AWS App Runner · JSON Structure

App Runner Custom Domain Structure

CustomDomain schema from AWS App Runner

Type: object Properties: 4
CI/CDContainersDeploymentMicroservicesServerless

CustomDomain is a JSON Structure definition published by AWS App Runner, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

DomainName EnableWWWSubdomain CertificateValidationRecords Status

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

JSON Structure

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-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-app-runner/refs/heads/main/json-structure/app-runner-custom-domain-structure.json",
  "name": "CustomDomain",
  "description": "CustomDomain schema from AWS App Runner"
}