interface KafkaClusterClientAuthenticationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KafkaConnect.Mixins.CfnConnectorPropsMixin.KafkaClusterClientAuthenticationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskafkaconnect/mixins#CfnConnectorPropsMixin_KafkaClusterClientAuthenticationProperty |
Java | software.amazon.awscdk.mixins.preview.services.kafkaconnect.mixins.CfnConnectorPropsMixin.KafkaClusterClientAuthenticationProperty |
Python | aws_cdk.mixins_preview.aws_kafkaconnect.mixins.CfnConnectorPropsMixin.KafkaClusterClientAuthenticationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kafkaconnect » mixins » CfnConnectorPropsMixin » KafkaClusterClientAuthenticationProperty |
The client authentication information used in order to authenticate with 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 { mixins as kafkaconnect_mixins } from '@aws-cdk/mixins-preview/aws-kafkaconnect';
const kafkaClusterClientAuthenticationProperty: kafkaconnect_mixins.CfnConnectorPropsMixin.KafkaClusterClientAuthenticationProperty = {
authenticationType: 'authenticationType',
};
Properties
| Name | Type | Description |
|---|---|---|
| authentication | string | The type of client authentication used to connect to the Apache Kafka cluster. |
authenticationType?
Type:
string
(optional)
The type of client authentication used to connect to the Apache Kafka cluster.
Value NONE means that no client authentication is used.

.NET
Go
Java
Python
TypeScript