Interface CfnReplicatorPropsMixin.KafkaClusterClientAuthenticationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnReplicatorPropsMixin.KafkaClusterClientAuthenticationProperty.Jsii$Proxy
- Enclosing class:
CfnReplicatorPropsMixin
@Stability(Stable)
public static interface CfnReplicatorPropsMixin.KafkaClusterClientAuthenticationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.msk.*;
KafkaClusterClientAuthenticationProperty kafkaClusterClientAuthenticationProperty = KafkaClusterClientAuthenticationProperty.builder()
.saslScram(KafkaClusterSaslScramAuthenticationProperty.builder()
.mechanism("mechanism")
.secretArn("secretArn")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnReplicatorPropsMixin.KafkaClusterClientAuthenticationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSaslScram
Details for SASL/SCRAM client authentication.Returns union: either
IResolvableorCfnReplicatorPropsMixin.KafkaClusterSaslScramAuthenticationProperty- See Also:
-
builder
@Stability(Stable) static CfnReplicatorPropsMixin.KafkaClusterClientAuthenticationProperty.Builder builder()
-