Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ClientPolicyTls

import type { ClientPolicyTls } from "https://aws-api.deno.dev/v0.3/services/appmesh.ts?docs=full";

A reference to an object that represents a Transport Layer Security (TLS) client policy.

interface ClientPolicyTls {
certificate?: ClientTlsCertificate | null;
enforce?: boolean | null;
ports?: number[] | null;
}

§Properties

§
certificate?: ClientTlsCertificate | null
[src]

A reference to an object that represents a client's TLS certificate.

§
enforce?: boolean | null
[src]

Whether the policy is enforced. The default is True, if a value isn't specified.

§
ports?: number[] | null
[src]

One or more ports that the policy is enforced for.

§

A reference to an object that represents a TLS validation context.