Class CfnReplicator.KafkaClusterEncryptionInTransitProperty
Details of encryption in transit to the Apache Kafka cluster.
Inherited Members
Namespace: Amazon.CDK.AWS.MSK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnReplicator.KafkaClusterEncryptionInTransitProperty : CfnReplicator.IKafkaClusterEncryptionInTransitProperty
Syntax (vb)
Public Class CfnReplicator.KafkaClusterEncryptionInTransitProperty Implements CfnReplicator.IKafkaClusterEncryptionInTransitProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.MSK;
var kafkaClusterEncryptionInTransitProperty = new KafkaClusterEncryptionInTransitProperty {
EncryptionType = "encryptionType",
// the properties below are optional
RootCaCertificate = "rootCaCertificate"
};
Synopsis
Constructors
| KafkaClusterEncryptionInTransitProperty() | Details of encryption in transit to the Apache Kafka cluster. |
Properties
| EncryptionType | The type of encryption in transit to the Apache Kafka cluster. |
| RootCaCertificate | The root CA certificate. |
Constructors
KafkaClusterEncryptionInTransitProperty()
Details of encryption in transit to the Apache Kafka cluster.
public KafkaClusterEncryptionInTransitProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.MSK;
var kafkaClusterEncryptionInTransitProperty = new KafkaClusterEncryptionInTransitProperty {
EncryptionType = "encryptionType",
// the properties below are optional
RootCaCertificate = "rootCaCertificate"
};
Properties
EncryptionType
The type of encryption in transit to the Apache Kafka cluster.
public string EncryptionType { get; set; }
Property Value
Remarks
RootCaCertificate
The root CA certificate.
public string? RootCaCertificate { get; set; }