interface KafkaClusterClientAuthenticationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MSK.CfnReplicator.KafkaClusterClientAuthenticationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnReplicator_KafkaClusterClientAuthenticationProperty |
Java | software.amazon.awscdk.services.msk.CfnReplicator.KafkaClusterClientAuthenticationProperty |
Python | aws_cdk.aws_msk.CfnReplicator.KafkaClusterClientAuthenticationProperty |
TypeScript | aws-cdk-lib » aws_msk » CfnReplicator » KafkaClusterClientAuthenticationProperty |
Details of the client authentication used by 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-lib';
const kafkaClusterClientAuthenticationProperty: msk.CfnReplicator.KafkaClusterClientAuthenticationProperty = {
saslScram: {
mechanism: 'mechanism',
secretArn: 'secretArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| sasl | IResolvable | Kafka | Details for SASL/SCRAM client authentication. |
saslScram
Type:
IResolvable | Kafka
Details for SASL/SCRAM client authentication.

.NET
Go
Java
Python
TypeScript