AWS App Mesh · Schema

ListenerTlsSdsCertificate

An object that represents the listener's Secret Discovery Service certificate. The proxy must be configured with a local SDS provider via a Unix Domain Socket. See App Mesh TLS documentation for more info.

DeprecatedEnvoyMicroservicesNetworkingService Mesh

Properties

Name Type Description
secretName object
View JSON Schema on GitHub

JSON Schema

app-mesh-listener-tls-sds-certificate-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "secretName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SdsSecretName"
        },
        {
          "description": "A reference to an object that represents the name of the secret requested from the Secret Discovery Service provider representing Transport Layer Security (TLS) materials like a certificate or certificate chain."
        }
      ]
    }
  },
  "required": [
    "secretName"
  ],
  "description": "An object that represents the listener's Secret Discovery Service certificate. The proxy must be configured with a local SDS provider via a Unix Domain Socket. See App Mesh <a href=\"https://docs.aws.amazon.com/app-mesh/latest/userguide/tls.html\">TLS documentation</a> for more info.",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aws-app-mesh/refs/heads/main/json-schema/app-mesh-listener-tls-sds-certificate-schema.json",
  "title": "ListenerTlsSdsCertificate"
}