Interface CfnCluster.TlsProperty

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

@Stability(Stable) public static interface CfnCluster.TlsProperty extends software.amazon.jsii.JsiiSerializable
Details for client authentication using TLS.

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.*;
 TlsProperty tlsProperty = TlsProperty.builder()
         .certificateAuthorityArnList(List.of("certificateAuthorityArnList"))
         .enabled(false)
         .build();