Interface CfnCluster.VpcConnectivityClientAuthenticationProperty

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

@Stability(Stable) public static interface CfnCluster.VpcConnectivityClientAuthenticationProperty extends software.amazon.jsii.JsiiSerializable
Includes all client authentication information for VpcConnectivity.

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.*;
 VpcConnectivityClientAuthenticationProperty vpcConnectivityClientAuthenticationProperty = VpcConnectivityClientAuthenticationProperty.builder()
         .sasl(VpcConnectivitySaslProperty.builder()
                 .iam(VpcConnectivityIamProperty.builder()
                         .enabled(false)
                         .build())
                 .scram(VpcConnectivityScramProperty.builder()
                         .enabled(false)
                         .build())
                 .build())
         .tls(VpcConnectivityTlsProperty.builder()
                 .enabled(false)
                 .build())
         .build();