interface KafkaClusterEncryptionInTransitProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnReplicatorPropsMixin.KafkaClusterEncryptionInTransitProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnReplicatorPropsMixin_KafkaClusterEncryptionInTransitProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnReplicatorPropsMixin.KafkaClusterEncryptionInTransitProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnReplicatorPropsMixin.KafkaClusterEncryptionInTransitProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnReplicatorPropsMixin » KafkaClusterEncryptionInTransitProperty |
Details of encryption in transit to the Apache Kafka cluster.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_msk as msk } from '@aws-cdk/cfn-property-mixins';
const kafkaClusterEncryptionInTransitProperty: msk.CfnReplicatorPropsMixin.KafkaClusterEncryptionInTransitProperty = {
encryptionType: 'encryptionType',
rootCaCertificate: 'rootCaCertificate',
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | string | The type of encryption in transit to the Apache Kafka cluster. |
| root | string | The root CA certificate. |
encryptionType?
Type:
string
(optional)
The type of encryption in transit to the Apache Kafka cluster.
rootCaCertificate?
Type:
string
(optional)
The root CA certificate.

.NET
Go
Java
Python
TypeScript