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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnReplicator.KafkaClusterSaslScramAuthenticationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The SASL/SCRAM authentication mechanism.The Amazon Resource Name (ARN) of the Secrets Manager secret.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMechanism
The SASL/SCRAM authentication mechanism.- See Also:
-
getSecretArn
The Amazon Resource Name (ARN) of the Secrets Manager secret.- See Also:
-
builder
@Stability(Stable) static CfnReplicator.KafkaClusterSaslScramAuthenticationProperty.Builder builder()
-