Interface CfnServerlessCluster.ClientAuthenticationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnServerlessCluster.ClientAuthenticationProperty.Jsii$Proxy
- Enclosing class:
CfnServerlessCluster
@Stability(Stable)
public static interface CfnServerlessCluster.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.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 classA builder forCfnServerlessCluster.ClientAuthenticationPropertystatic final classAn implementation forCfnServerlessCluster.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
IResolvableorCfnServerlessCluster.SaslProperty- See Also:
-
builder
-