interface KafkaClusterOAuthClientCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MSK.CfnReplicator.KafkaClusterOAuthClientCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnReplicator_KafkaClusterOAuthClientCredentialsProperty |
Java | software.amazon.awscdk.services.msk.CfnReplicator.KafkaClusterOAuthClientCredentialsProperty |
Python | aws_cdk.aws_msk.CfnReplicator.KafkaClusterOAuthClientCredentialsProperty |
TypeScript | aws-cdk-lib » aws_msk » CfnReplicator » KafkaClusterOAuthClientCredentialsProperty |
Details for SASL/OAUTHBEARER using the standard client_credentials grant.
The referenced secret must contain client_id and client_secret.
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 kafkaClusterOAuthClientCredentialsProperty: msk.CfnReplicator.KafkaClusterOAuthClientCredentialsProperty = {
tokenRequestSecretArn: 'tokenRequestSecretArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| token | string | Secrets Manager ARN of the secret containing the client_id and client_secret used to obtain an OAuth Bearer token via the client_credentials grant. |
tokenRequestSecretArn
Type:
string
Secrets Manager ARN of the secret containing the client_id and client_secret used to obtain an OAuth Bearer token via the client_credentials grant.

.NET
Go
Java
Python
TypeScript