Interface CfnCluster.VpcConnectivitySaslProperty

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

@Stability(Stable) public static interface CfnCluster.VpcConnectivitySaslProperty extends software.amazon.jsii.JsiiSerializable
Details for client authentication using SASL 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.*;
 VpcConnectivitySaslProperty vpcConnectivitySaslProperty = VpcConnectivitySaslProperty.builder()
         .iam(VpcConnectivityIamProperty.builder()
                 .enabled(false)
                 .build())
         .scram(VpcConnectivityScramProperty.builder()
                 .enabled(false)
                 .build())
         .build();
 

See Also: