AWS App Mesh · JSON Structure

App Mesh Virtual Gateway Listener Tls Certificate Structure

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

Type: object Properties: 3
DeprecatedEnvoyMicroservicesNetworkingService Mesh

VirtualGatewayListenerTlsCertificate 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/VirtualGatewayListenerTlsAcmCertificate"
        },
        {
          "description": "A reference to an object that represents an Certificate Manager certificate."
        }
      ]
    },
    "file": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VirtualGatewayListenerTlsFileCertificate"
        },
        {
          "description": "A reference to an object that represents a local file certificate."
        }
      ]
    },
    "sds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VirtualGatewayListenerTlsSdsCertificate"
        },
        {
          "description": "A reference to an object that represents a virtual gateway's 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-virtual-gateway-listener-tls-certificate-structure.json",
  "name": "VirtualGatewayListenerTlsCertificate"
}