interface VpcConnectivityClientAuthenticationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.MSK.CfnCluster.VpcConnectivityClientAuthenticationProperty | 
  Java | software.amazon.awscdk.services.msk.CfnCluster.VpcConnectivityClientAuthenticationProperty | 
  Python | aws_cdk.aws_msk.CfnCluster.VpcConnectivityClientAuthenticationProperty | 
  TypeScript  | @aws-cdk/aws-msk » CfnCluster » VpcConnectivityClientAuthenticationProperty | 
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 * as msk from '@aws-cdk/aws-msk';
const vpcConnectivityClientAuthenticationProperty: msk.CfnCluster.VpcConnectivityClientAuthenticationProperty = {
  sasl: {
    iam: {
      enabled: false,
    },
    scram: {
      enabled: false,
    },
  },
  tls: {
    enabled: false,
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| sasl? | IResolvable | Vpc | Details for VpcConnectivity ClientAuthentication using SASL. | 
| tls? | IResolvable | Vpc | Details for VpcConnectivity ClientAuthentication using TLS. | 
sasl?
Type:
IResolvable | Vpc
(optional)
Details for VpcConnectivity ClientAuthentication using SASL.
tls?
Type:
IResolvable | Vpc
(optional)
Details for VpcConnectivity ClientAuthentication using TLS.

 .NET
 Java
 Python
 TypeScript