ClientBrokerEncryption

class aws_cdk.aws_msk_alpha.ClientBrokerEncryption(value)

Bases: Enum

(experimental) Indicates the encryption setting for data in transit between clients and brokers.

Stability:

experimental

ExampleMetadata:

infused

Example:

import aws_cdk.aws_acmpca as acmpca

# vpc: ec2.Vpc

cluster = msk.Cluster(self, "Cluster",
    cluster_name="myCluster",
    kafka_version=msk.KafkaVersion.V2_8_1,
    vpc=vpc,
    encryption_in_transit=msk.EncryptionInTransitConfig(
        client_broker=msk.ClientBrokerEncryption.TLS
    ),
    client_authentication=msk.ClientAuthentication.tls(
        certificate_authorities=[
            acmpca.CertificateAuthority.from_certificate_authority_arn(self, "CertificateAuthority", "arn:aws:acm-pca:us-west-2:1234567890:certificate-authority/11111111-1111-1111-1111-111111111111")
        ]
    )
)

Attributes

PLAINTEXT

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

Stability:

experimental

TLS

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

Stability:

experimental

TLS_PLAINTEXT

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

Stability:

experimental