interface SaslProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnServerlessClusterPropsMixin.SaslProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnServerlessClusterPropsMixin_SaslProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnServerlessClusterPropsMixin.SaslProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnServerlessClusterPropsMixin.SaslProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnServerlessClusterPropsMixin » SaslProperty |
Details for client authentication using SASL.
To turn on SASL, you must also turn on EncryptionInTransit by setting inCluster to true. You must set clientBroker to either TLS or TLS_PLAINTEXT . If you choose TLS_PLAINTEXT , then you must also set unauthenticated to true.
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 saslProperty: msk.CfnServerlessClusterPropsMixin.SaslProperty = {
iam: {
enabled: false,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| iam? | IResolvable | Iam | Details for ClientAuthentication using IAM. |
iam?
Type:
IResolvable | Iam
(optional)
Details for ClientAuthentication using IAM.

.NET
Go
Java
Python
TypeScript