Interface CfnCluster.ClientAuthenticationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnCluster.ClientAuthenticationProperty.Jsii$Proxy
Enclosing class:
CfnCluster

@Stability(Stable) public static interface CfnCluster.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())
                 .scram(ScramProperty.builder()
                         .enabled(false)
                         .build())
                 .build())
         .tls(TlsProperty.builder()
                 .certificateAuthorityArnList(List.of("certificateAuthorityArnList"))
                 .enabled(false)
                 .build())
         .unauthenticated(UnauthenticatedProperty.builder()
                 .enabled(false)
                 .build())
         .build();
 

See Also: