AWS App Mesh · Schema

VirtualGatewayClientPolicyTls

An object that represents a Transport Layer Security (TLS) client policy.

DeprecatedEnvoyMicroservicesNetworkingService Mesh

Properties

Name Type Description
certificate object
enforce object
ports object
validation object
View JSON Schema on GitHub

JSON Schema

app-mesh-virtual-gateway-client-policy-tls-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "certificate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VirtualGatewayClientTlsCertificate"
        },
        {
          "description": "A reference to an object that represents a virtual gateway's client's Transport Layer Security (TLS) certificate."
        }
      ]
    },
    "enforce": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Boolean"
        },
        {
          "description": "Whether the policy is enforced. The default is <code>True</code>, if a value isn't specified."
        }
      ]
    },
    "ports": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PortSet"
        },
        {
          "description": "One or more ports that the policy is enforced for."
        }
      ]
    },
    "validation": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VirtualGatewayTlsValidationContext"
        },
        {
          "description": "A reference to an object that represents a Transport Layer Security (TLS) validation context."
        }
      ]
    }
  },
  "required": [
    "validation"
  ],
  "description": "An object that represents a Transport Layer Security (TLS) client policy.",
  "$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-virtual-gateway-client-policy-tls-schema.json",
  "title": "VirtualGatewayClientPolicyTls"
}