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

EncryptionInTransit

import type { EncryptionInTransit } from "https://aws-api.deno.dev/v0.4/services/kafka.ts?docs=full";

The settings for encrypting data in transit.

interface EncryptionInTransit {
ClientBroker?: ClientBroker | null;
InCluster?: boolean | null;
}

§Properties

§
ClientBroker?: ClientBroker | null
[src]

Indicates the encryption setting for data in transit between clients and brokers. The following are the possible values.

TLS means that client-broker communication is enabled with TLS only.

TLS_PLAINTEXT means that client-broker communication is enabled for both TLS-encrypted, as well as plaintext data.

PLAINTEXT means that client-broker communication is enabled in plaintext only.

The default value is TLS_PLAINTEXT.

§
InCluster?: boolean | null
[src]

When set to true, it indicates that data communication among the broker nodes of the cluster is encrypted. When set to false, the communication happens in plaintext.

The default value is true.