interface KafkaClusterOAuthClientCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnReplicatorPropsMixin.KafkaClusterOAuthClientCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnReplicatorPropsMixin_KafkaClusterOAuthClientCredentialsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnReplicatorPropsMixin.KafkaClusterOAuthClientCredentialsProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnReplicatorPropsMixin.KafkaClusterOAuthClientCredentialsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnReplicatorPropsMixin » 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/cfn-property-mixins';
const kafkaClusterOAuthClientCredentialsProperty: msk.CfnReplicatorPropsMixin.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
(optional)
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