Interface CfnServerlessClusterPropsMixin.ClientAuthenticationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnServerlessClusterPropsMixin.ClientAuthenticationProperty.Jsii$Proxy
- Enclosing class:
CfnServerlessClusterPropsMixin
@Stability(Stable)
public static interface CfnServerlessClusterPropsMixin.ClientAuthenticationProperty
extends software.amazon.jsii.JsiiSerializable
Includes all client authentication information.
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.*;
ClientAuthenticationProperty clientAuthenticationProperty = ClientAuthenticationProperty.builder()
.sasl(SaslProperty.builder()
.iam(IamProperty.builder()
.enabled(false)
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnServerlessClusterPropsMixin.ClientAuthenticationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSasl
Details for client authentication using SASL.To turn on SASL, you must also turn on
EncryptionInTransitby settinginClusterto true. You must setclientBrokerto eitherTLSorTLS_PLAINTEXT. If you chooseTLS_PLAINTEXT, then you must also setunauthenticatedto true.Returns union: either
IResolvableorCfnServerlessClusterPropsMixin.SaslProperty- See Also:
-
builder
@Stability(Stable) static CfnServerlessClusterPropsMixin.ClientAuthenticationProperty.Builder builder()
-