Interface CfnCluster.ConnectivityInfoProperty

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

@Stability(Stable) public static interface CfnCluster.ConnectivityInfoProperty extends software.amazon.jsii.JsiiSerializable
Broker access controls.

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.*;
 ConnectivityInfoProperty connectivityInfoProperty = ConnectivityInfoProperty.builder()
         .publicAccess(PublicAccessProperty.builder()
                 .type("type")
                 .build())
         .vpcConnectivity(VpcConnectivityProperty.builder()
                 .clientAuthentication(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())
                 .build())
         .build();