interface ClientAuthenticationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MSK.Mixins.CfnServerlessClusterPropsMixin.ClientAuthenticationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmsk/mixins#CfnServerlessClusterPropsMixin_ClientAuthenticationProperty |
Java | software.amazon.awscdk.mixins.preview.services.msk.mixins.CfnServerlessClusterPropsMixin.ClientAuthenticationProperty |
Python | aws_cdk.mixins_preview.aws_msk.mixins.CfnServerlessClusterPropsMixin.ClientAuthenticationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_msk » mixins » CfnServerlessClusterPropsMixin » ClientAuthenticationProperty |
Includes all client authentication information.
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 clientAuthenticationProperty: msk_mixins.CfnServerlessClusterPropsMixin.ClientAuthenticationProperty = {
sasl: {
iam: {
enabled: false,
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| sasl? | IResolvable | Sasl | Details for client authentication using SASL. |
sasl?
Type:
IResolvable | Sasl
(optional)
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.

.NET
Go
Java
Python
TypeScript