interface KafkaClusterSaslScramAuthenticationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MSK.CfnReplicator.KafkaClusterSaslScramAuthenticationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnReplicator_KafkaClusterSaslScramAuthenticationProperty |
Java | software.amazon.awscdk.services.msk.CfnReplicator.KafkaClusterSaslScramAuthenticationProperty |
Python | aws_cdk.aws_msk.CfnReplicator.KafkaClusterSaslScramAuthenticationProperty |
TypeScript | aws-cdk-lib » aws_msk » CfnReplicator » 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-lib';
const kafkaClusterSaslScramAuthenticationProperty: msk.CfnReplicator.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
The SASL/SCRAM authentication mechanism.
secretArn
Type:
string
The Amazon Resource Name (ARN) of the Secrets Manager secret.

.NET
Go
Java
Python
TypeScript