interface MSKAccessCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pipes.Mixins.CfnPipePropsMixin.MSKAccessCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspipes/mixins#CfnPipePropsMixin_MSKAccessCredentialsProperty |
Java | software.amazon.awscdk.mixins.preview.services.pipes.mixins.CfnPipePropsMixin.MSKAccessCredentialsProperty |
Python | aws_cdk.mixins_preview.aws_pipes.mixins.CfnPipePropsMixin.MSKAccessCredentialsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pipes » mixins » CfnPipePropsMixin » MSKAccessCredentialsProperty |
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 mSKAccessCredentialsProperty: pipes_mixins.CfnPipePropsMixin.MSKAccessCredentialsProperty = {
clientCertificateTlsAuth: 'clientCertificateTlsAuth',
saslScram512Auth: 'saslScram512Auth',
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | The ARN of the Secrets Manager secret. |
| sasl | string | The ARN of the Secrets Manager secret. |
clientCertificateTlsAuth?
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