interface SaslProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MSK.Mixins.CfnClusterPropsMixin.SaslProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmsk/mixins#CfnClusterPropsMixin_SaslProperty |
Java | software.amazon.awscdk.mixins.preview.services.msk.mixins.CfnClusterPropsMixin.SaslProperty |
Python | aws_cdk.mixins_preview.aws_msk.mixins.CfnClusterPropsMixin.SaslProperty |
TypeScript | @aws-cdk/mixins-preview » aws_msk » mixins » CfnClusterPropsMixin » 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.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-sasl.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as msk_mixins } from '@aws-cdk/mixins-preview/aws-msk';
const saslProperty: msk_mixins.CfnClusterPropsMixin.SaslProperty = {
iam: {
enabled: false,
},
scram: {
enabled: false,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| iam? | IResolvable | Iam | Details for ClientAuthentication using IAM. |
| scram? | IResolvable | Scram | Details for SASL/SCRAM client authentication. |
iam?
Type:
IResolvable | Iam
(optional)
Details for ClientAuthentication using IAM.
scram?
Type:
IResolvable | Scram
(optional)
Details for SASL/SCRAM client authentication.

.NET
Go
Java
Python
TypeScript