Interface CfnReplicator.KafkaClusterSaslScramAuthenticationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnReplicator.KafkaClusterSaslScramAuthenticationProperty.Jsii$Proxy
Enclosing class:
CfnReplicator

@Stability(Stable) public static interface CfnReplicator.KafkaClusterSaslScramAuthenticationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.msk.*;
 KafkaClusterSaslScramAuthenticationProperty kafkaClusterSaslScramAuthenticationProperty = KafkaClusterSaslScramAuthenticationProperty.builder()
         .mechanism("mechanism")
         .secretArn("secretArn")
         .build();
 

See Also: