interface ConnectivityInfoProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.MSK.CfnCluster.ConnectivityInfoProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnCluster_ConnectivityInfoProperty | 
  Java | software.amazon.awscdk.services.msk.CfnCluster.ConnectivityInfoProperty | 
  Python | aws_cdk.aws_msk.CfnCluster.ConnectivityInfoProperty | 
  TypeScript  | aws-cdk-lib » aws_msk » CfnCluster » ConnectivityInfoProperty | 
Broker access controls.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_msk as msk } from 'aws-cdk-lib';
const connectivityInfoProperty: msk.CfnCluster.ConnectivityInfoProperty = {
  publicAccess: {
    type: 'type',
  },
  vpcConnectivity: {
    clientAuthentication: {
      sasl: {
        iam: {
          enabled: false,
        },
        scram: {
          enabled: false,
        },
      },
      tls: {
        enabled: false,
      },
    },
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| public | IResolvable | Public | Access control settings for the cluster's brokers. | 
| vpc | IResolvable | Vpc | VPC connection control settings for brokers. | 
publicAccess?
Type:
IResolvable | Public
(optional)
Access control settings for the cluster's brokers.
vpcConnectivity?
Type:
IResolvable | Vpc
(optional)
VPC connection control settings for brokers.

 .NET
 Go
 Java
 Python
 TypeScript