AWS App Mesh · JSON Structure

App Mesh Listener Tls Certificate Structure

An object that represents a listener's Transport Layer Security (TLS) certificate.

Type: object Properties: 3
DeprecatedEnvoyMicroservicesNetworkingService Mesh

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

Properties

acm file sds

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

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "acm": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ListenerTlsAcmCertificate"
        },
        {
          "description": "A reference to an object that represents an Certificate Manager certificate."
        }
      ]
    },
    "file": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ListenerTlsFileCertificate"
        },
        {
          "description": "A reference to an object that represents a local file certificate."
        }
      ]
    },
    "sds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ListenerTlsSdsCertificate"
        },
        {
          "description": "A reference to an object that represents a listener's Secret Discovery Service certificate."
        }
      ]
    }
  },
  "description": "An object that represents a listener's Transport Layer Security (TLS) certificate.",
  "$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-listener-tls-certificate-structure.json",
  "name": "ListenerTlsCertificate"
}