interface EncryptionInTransitConfig
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.MSK.Alpha.EncryptionInTransitConfig |
![]() | github.com/aws/aws-cdk-go/awscdkmskalpha/v2#EncryptionInTransitConfig |
![]() | software.amazon.awscdk.services.msk.alpha.EncryptionInTransitConfig |
![]() | aws_cdk.aws_msk_alpha.EncryptionInTransitConfig |
![]() | @aws-cdk/aws-msk-alpha » EncryptionInTransitConfig |
The settings for encrypting data in transit.
Example
import * as acmpca from 'aws-cdk-lib/aws-acmpca';
declare const vpc: ec2.Vpc;
const cluster = new msk.Cluster(this, 'Cluster', {
clusterName: 'myCluster',
kafkaVersion: msk.KafkaVersion.V3_8_X,
vpc,
encryptionInTransit: {
clientBroker: msk.ClientBrokerEncryption.TLS,
},
clientAuthentication: msk.ClientAuthentication.tls({
certificateAuthorities: [
acmpca.CertificateAuthority.fromCertificateAuthorityArn(
this,
'CertificateAuthority',
'arn:aws:acm-pca:us-west-2:1234567890:certificate-authority/11111111-1111-1111-1111-111111111111',
),
],
}),
});
Properties
Name | Type | Description |
---|---|---|
client | Client | Indicates the encryption setting for data in transit between clients and brokers. |
enable | boolean | Indicates that data communication among the broker nodes of the cluster is encrypted. |
clientBroker?
Type:
Client
(optional, default: TLS)
Indicates the encryption setting for data in transit between clients and brokers.
enableInCluster?
Type:
boolean
(optional, default: true)
Indicates that data communication among the broker nodes of the cluster is encrypted.