interface TlsAuthProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.MSK.TlsAuthProps |
Java | software.amazon.awscdk.services.msk.TlsAuthProps |
Python | aws_cdk.aws_msk.TlsAuthProps |
TypeScript (source) | @aws-cdk/aws-msk » TlsAuthProps |
TLS authentication properties.
Example
import * as acmpca from '@aws-cdk/aws-acmpca';
declare const vpc: ec2.Vpc;
const cluster = new msk.Cluster(this, 'Cluster', {
clusterName: 'myCluster',
kafkaVersion: msk.KafkaVersion.V2_8_1,
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 |
---|---|---|
certificate | ICertificate [] | List of ACM Certificate Authorities to enable TLS authentication. |
certificateAuthorities?
Type:
ICertificate
[]
(optional, default: none)
List of ACM Certificate Authorities to enable TLS authentication.