Interface CfnServerlessClusterPropsMixin.SaslProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnServerlessClusterPropsMixin.SaslProperty.Jsii$Proxy
- Enclosing class:
CfnServerlessClusterPropsMixin
@Stability(Stable)
public static interface CfnServerlessClusterPropsMixin.SaslProperty
extends software.amazon.jsii.JsiiSerializable
Details for client authentication using SASL.
To turn on SASL, you must also turn on EncryptionInTransit by setting inCluster to true. You must set clientBroker to either TLS or TLS_PLAINTEXT . If you choose TLS_PLAINTEXT , then you must also set unauthenticated to true.
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.*;
SaslProperty saslProperty = SaslProperty.builder()
.iam(IamProperty.builder()
.enabled(false)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnServerlessClusterPropsMixin.SaslPropertystatic final classAn implementation forCfnServerlessClusterPropsMixin.SaslProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIam
Details for ClientAuthentication using IAM.Returns union: either
IResolvableorCfnServerlessClusterPropsMixin.IamProperty- See Also:
-
builder
-