AWS App Mesh · Schema

TlsValidationContextFileTrust

An object that represents a Transport Layer Security (TLS) validation context trust for a local file.

DeprecatedEnvoyMicroservicesNetworkingService Mesh

Properties

Name Type Description
certificateChain object
View JSON Schema on GitHub

JSON Schema

app-mesh-tls-validation-context-file-trust-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "certificateChain": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FilePath"
        },
        {
          "description": "The certificate trust chain for a certificate stored on the file system of the virtual node that the proxy is running on."
        }
      ]
    }
  },
  "required": [
    "certificateChain"
  ],
  "description": "An object that represents a Transport Layer Security (TLS) validation context trust for a local file.",
  "$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-tls-validation-context-file-trust-schema.json",
  "title": "TlsValidationContextFileTrust"
}