aws-cdk-lib.aws_msk.CfnServerlessCluster.ClientAuthenticationProperty

interface ClientAuthenticationProperty

LanguageType name
.NETAmazon.CDK.AWS.MSK.CfnServerlessCluster.ClientAuthenticationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnServerlessCluster_ClientAuthenticationProperty
Javasoftware.amazon.awscdk.services.msk.CfnServerlessCluster.ClientAuthenticationProperty
Pythonaws_cdk.aws_msk.CfnServerlessCluster.ClientAuthenticationProperty
TypeScript aws-cdk-lib » aws_msk » CfnServerlessCluster » 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 { aws_msk as msk } from 'aws-cdk-lib';
const clientAuthenticationProperty: msk.CfnServerlessCluster.ClientAuthenticationProperty = {
  sasl: {
    iam: {
      enabled: false,
    },
  },
};

Properties

NameTypeDescription
saslIResolvable | SaslPropertyDetails for client authentication using SASL.

sasl

Type: IResolvable | 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.