interface KafkaClusterClientAuthenticationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnReplicatorPropsMixin.KafkaClusterClientAuthenticationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnReplicatorPropsMixin_KafkaClusterClientAuthenticationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnReplicatorPropsMixin.KafkaClusterClientAuthenticationProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnReplicatorPropsMixin.KafkaClusterClientAuthenticationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnReplicatorPropsMixin » 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/cfn-property-mixins';
const kafkaClusterClientAuthenticationProperty: msk.CfnReplicatorPropsMixin.KafkaClusterClientAuthenticationProperty = {
saslScram: {
mechanism: 'mechanism',
secretArn: 'secretArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| sasl | IResolvable | Kafka | Details for SASL/SCRAM client authentication. |
saslScram?
Type:
IResolvable | Kafka
(optional)
Details for SASL/SCRAM client authentication.

.NET
Go
Java
Python
TypeScript