aws-cdk-lib.aws_msk.CfnCluster.ClientAuthenticationProperty

interface ClientAuthenticationProperty

LanguageType name
.NETAmazon.CDK.AWS.MSK.CfnCluster.ClientAuthenticationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnCluster_ClientAuthenticationProperty
Javasoftware.amazon.awscdk.services.msk.CfnCluster.ClientAuthenticationProperty
Pythonaws_cdk.aws_msk.CfnCluster.ClientAuthenticationProperty
TypeScript aws-cdk-lib » aws_msk » CfnCluster » 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.CfnCluster.ClientAuthenticationProperty = {
  sasl: {
    iam: {
      enabled: false,
    },
    scram: {
      enabled: false,
    },
  },
  tls: {
    certificateAuthorityArnList: ['certificateAuthorityArnList'],
    enabled: false,
  },
  unauthenticated: {
    enabled: false,
  },
};

Properties

NameTypeDescription
sasl?IResolvable | SaslPropertyDetails for client authentication using SASL.
tls?IResolvable | TlsPropertyDetails for ClientAuthentication using TLS.
unauthenticated?IResolvable | UnauthenticatedPropertyDetails for ClientAuthentication using no authentication.

sasl?

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


tls?

Type: IResolvable | TlsProperty (optional)

Details for ClientAuthentication using TLS.

To turn on TLS access control, you must also turn on EncryptionInTransit by setting inCluster to true and clientBroker to TLS .


unauthenticated?

Type: IResolvable | UnauthenticatedProperty (optional)

Details for ClientAuthentication using no authentication.