interface KafkaClusterOAuthClientCredentialsAssertionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MSK.CfnReplicator.KafkaClusterOAuthClientCredentialsAssertionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnReplicator_KafkaClusterOAuthClientCredentialsAssertionProperty |
Java | software.amazon.awscdk.services.msk.CfnReplicator.KafkaClusterOAuthClientCredentialsAssertionProperty |
Python | aws_cdk.aws_msk.CfnReplicator.KafkaClusterOAuthClientCredentialsAssertionProperty |
TypeScript | aws-cdk-lib » aws_msk » CfnReplicator » KafkaClusterOAuthClientCredentialsAssertionProperty |
Details for SASL/OAUTHBEARER using the client credentials grant with a JWT client assertion (RFC 7521/7523 Section 2.2). An STS-vended JWT is used as the client_assertion.
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 kafkaClusterOAuthClientCredentialsAssertionProperty: msk.CfnReplicator.KafkaClusterOAuthClientCredentialsAssertionProperty = {
audience: 'audience',
signingAlgorithm: 'signingAlgorithm',
// the properties below are optional
tokenRequestSecretArn: 'tokenRequestSecretArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| audience | string | The audience (aud claim) set in the STS JWT client assertion. |
| signing | string | The algorithm used to sign the STS JWT assertion. |
| token | string | Optional Secrets Manager ARN for identity providers that require client_id as a form parameter alongside the JWT client assertion. |
audience
Type:
string
The audience (aud claim) set in the STS JWT client assertion.
signingAlgorithm
Type:
string
The algorithm used to sign the STS JWT assertion.
tokenRequestSecretArn?
Type:
string
(optional)
Optional Secrets Manager ARN for identity providers that require client_id as a form parameter alongside the JWT client assertion.

.NET
Go
Java
Python
TypeScript