interface AuthenticationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisFirehose.Mixins.CfnDeliveryStreamPropsMixin.AuthenticationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisfirehose/mixins#CfnDeliveryStreamPropsMixin_AuthenticationConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.AuthenticationConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_kinesisfirehose.mixins.CfnDeliveryStreamPropsMixin.AuthenticationConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisfirehose » mixins » CfnDeliveryStreamPropsMixin » AuthenticationConfigurationProperty |
The authentication configuration of the Amazon MSK cluster.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as kinesisfirehose_mixins } from '@aws-cdk/mixins-preview/aws-kinesisfirehose';
const authenticationConfigurationProperty: kinesisfirehose_mixins.CfnDeliveryStreamPropsMixin.AuthenticationConfigurationProperty = {
connectivity: 'connectivity',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| connectivity? | string | The type of connectivity used to access the Amazon MSK cluster. |
| role | string | The ARN of the role used to access the Amazon MSK cluster. |
connectivity?
Type:
string
(optional)
The type of connectivity used to access the Amazon MSK cluster.
roleArn?
Type:
string
(optional)
The ARN of the role used to access the Amazon MSK cluster.

.NET
Go
Java
Python
TypeScript