AWS App Mesh · JSON Structure

App Mesh Dns Service Discovery Structure

An object that represents the DNS service discovery information for your virtual node.

Type: object Properties: 3 Required: 1
DeprecatedEnvoyMicroservicesNetworkingService Mesh

DnsServiceDiscovery is a JSON Structure definition published by AWS App Mesh, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

hostname ipPreference responseType

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

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "hostname": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Hostname"
        },
        {
          "description": "Specifies the DNS service discovery hostname for the virtual node. "
        }
      ]
    },
    "ipPreference": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IpPreference"
        },
        {
          "description": "The preferred IP version that this virtual node uses. Setting the IP preference on the virtual node only overrides the IP preference set for the mesh on this specific node."
        }
      ]
    },
    "responseType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DnsResponseType"
        },
        {
          "description": "Specifies the DNS response type for the virtual node."
        }
      ]
    }
  },
  "required": [
    "hostname"
  ],
  "description": "An object that represents the DNS service discovery information for your virtual node.",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-app-mesh/refs/heads/main/json-structure/app-mesh-dns-service-discovery-structure.json",
  "name": "DnsServiceDiscovery"
}