interface KafkaClusterClientAuthenticationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MSK.CfnReplicator.KafkaClusterClientAuthenticationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnReplicator_KafkaClusterClientAuthenticationProperty |
Java | software.amazon.awscdk.services.msk.CfnReplicator.KafkaClusterClientAuthenticationProperty |
Python | aws_cdk.aws_msk.CfnReplicator.KafkaClusterClientAuthenticationProperty |
TypeScript | aws-cdk-lib » aws_msk » CfnReplicator » KafkaClusterClientAuthenticationProperty |
Details of the client authentication used by the Apache Kafka cluster.
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 kafkaClusterClientAuthenticationProperty: msk.CfnReplicator.KafkaClusterClientAuthenticationProperty = {
mtls: {
secretArn: 'secretArn',
},
saslOAuthBearer: {
tokenEndpointAuthenticationMethod: 'tokenEndpointAuthenticationMethod',
tokenEndpointUrl: 'tokenEndpointUrl',
// the properties below are optional
clientCredentials: {
tokenRequestSecretArn: 'tokenRequestSecretArn',
},
clientCredentialsAssertion: {
audience: 'audience',
signingAlgorithm: 'signingAlgorithm',
// the properties below are optional
tokenRequestSecretArn: 'tokenRequestSecretArn',
},
iamJwtBearer: {
audience: 'audience',
signingAlgorithm: 'signingAlgorithm',
// the properties below are optional
tokenRequestSecretArn: 'tokenRequestSecretArn',
},
scope: 'scope',
tokenEndpointTlsCertificateArn: 'tokenEndpointTlsCertificateArn',
},
saslScram: {
mechanism: 'mechanism',
secretArn: 'secretArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| mtls? | IResolvable | Kafka | Details for mTLS client authentication. |
| sasl | IResolvable | Kafka | Details for client authentication using SASL/OAUTHBEARER. |
| sasl | IResolvable | Kafka | Details for SASL/SCRAM client authentication. |
mtls?
Type:
IResolvable | Kafka
(optional)
Details for mTLS client authentication.
saslOAuthBearer?
Type:
IResolvable | Kafka
(optional)
Details for client authentication using SASL/OAUTHBEARER.
saslScram?
Type:
IResolvable | Kafka
(optional)
Details for SASL/SCRAM client authentication.

.NET
Go
Java
Python
TypeScript