interface VpcConnectivityClientAuthenticationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnClusterPropsMixin.VpcConnectivityClientAuthenticationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnClusterPropsMixin_VpcConnectivityClientAuthenticationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnClusterPropsMixin.VpcConnectivityClientAuthenticationProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnClusterPropsMixin.VpcConnectivityClientAuthenticationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnClusterPropsMixin » 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 { aws_msk as msk } from '@aws-cdk/cfn-property-mixins';
const vpcConnectivityClientAuthenticationProperty: msk.CfnClusterPropsMixin.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
Go
Java
Python
TypeScript