Amazon WorkMail · Schema

DnsRecord

A DNS record uploaded to your DNS provider.

Business CommunicationCalendarEmailExchangeEnterprise

Properties

Name Type Description
Type object
Hostname object
Value object
View JSON Schema on GitHub

JSON Schema

workmail-dns-record-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "Type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The RFC 1035 record type. Possible values: <code>CNAME</code>, <code>A</code>, <code>MX</code>."
        }
      ]
    },
    "Hostname": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The DNS hostname.- For example, <code>domain.example.com</code>."
        }
      ]
    },
    "Value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The value returned by the DNS for a query to that hostname and record type."
        }
      ]
    }
  },
  "description": "A DNS record uploaded to your DNS provider.",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DnsRecord",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-workmail/refs/heads/main/json-schema/workmail-dns-record-schema.json"
}