interface KafkaClusterSaslScramAuthenticationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnReplicatorPropsMixin.KafkaClusterSaslScramAuthenticationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnReplicatorPropsMixin_KafkaClusterSaslScramAuthenticationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnReplicatorPropsMixin.KafkaClusterSaslScramAuthenticationProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnReplicatorPropsMixin.KafkaClusterSaslScramAuthenticationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnReplicatorPropsMixin » KafkaClusterSaslScramAuthenticationProperty |
Details for SASL/SCRAM client authentication.
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 kafkaClusterSaslScramAuthenticationProperty: msk.CfnReplicatorPropsMixin.KafkaClusterSaslScramAuthenticationProperty = {
mechanism: 'mechanism',
secretArn: 'secretArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| mechanism? | string | The SASL/SCRAM authentication mechanism. |
| secret | string | The Amazon Resource Name (ARN) of the Secrets Manager secret. |
mechanism?
Type:
string
(optional)
The SASL/SCRAM authentication mechanism.
secretArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the Secrets Manager secret.

.NET
Go
Java
Python
TypeScript