interface SelfManagedKafkaAccessConfigurationCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pipes.Mixins.CfnPipePropsMixin.SelfManagedKafkaAccessConfigurationCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspipes/mixins#CfnPipePropsMixin_SelfManagedKafkaAccessConfigurationCredentialsProperty |
Java | software.amazon.awscdk.mixins.preview.services.pipes.mixins.CfnPipePropsMixin.SelfManagedKafkaAccessConfigurationCredentialsProperty |
Python | aws_cdk.mixins_preview.aws_pipes.mixins.CfnPipePropsMixin.SelfManagedKafkaAccessConfigurationCredentialsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pipes » mixins » CfnPipePropsMixin » SelfManagedKafkaAccessConfigurationCredentialsProperty |
The AWS Secrets Manager secret that stores your stream credentials.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as pipes_mixins } from '@aws-cdk/mixins-preview/aws-pipes';
const selfManagedKafkaAccessConfigurationCredentialsProperty: pipes_mixins.CfnPipePropsMixin.SelfManagedKafkaAccessConfigurationCredentialsProperty = {
basicAuth: 'basicAuth',
clientCertificateTlsAuth: 'clientCertificateTlsAuth',
saslScram256Auth: 'saslScram256Auth',
saslScram512Auth: 'saslScram512Auth',
};
Properties
| Name | Type | Description |
|---|---|---|
| basic | string | The ARN of the Secrets Manager secret. |
| client | string | The ARN of the Secrets Manager secret. |
| sasl | string | The ARN of the Secrets Manager secret. |
| sasl | string | The ARN of the Secrets Manager secret. |
basicAuth?
Type:
string
(optional)
The ARN of the Secrets Manager secret.
clientCertificateTlsAuth?
Type:
string
(optional)
The ARN of the Secrets Manager secret.
saslScram256Auth?
Type:
string
(optional)
The ARN of the Secrets Manager secret.
saslScram512Auth?
Type:
string
(optional)
The ARN of the Secrets Manager secret.

.NET
Go
Java
Python
TypeScript