interface KafkaClusterOAuthIamJwtBearerProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MSK.CfnReplicator.KafkaClusterOAuthIamJwtBearerProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmsk#CfnReplicator_KafkaClusterOAuthIamJwtBearerProperty |
Java | software.amazon.awscdk.services.msk.CfnReplicator.KafkaClusterOAuthIamJwtBearerProperty |
Python | aws_cdk.aws_msk.CfnReplicator.KafkaClusterOAuthIamJwtBearerProperty |
TypeScript | aws-cdk-lib » aws_msk » CfnReplicator » KafkaClusterOAuthIamJwtBearerProperty |
Details for SASL/OAUTHBEARER using the JWT Bearer assertion grant (RFC 7523).
An STS-vended JWT is used as the 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 kafkaClusterOAuthIamJwtBearerProperty: msk.CfnReplicator.KafkaClusterOAuthIamJwtBearerProperty = {
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 assertion. |
| signing | string | The algorithm used to sign the STS JWT assertion. |
| token | string | Optional Secrets Manager ARN for identity providers that require client authentication alongside the JWT Bearer assertion. |
audience
Type:
string
The audience (aud claim) set in the STS JWT 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 authentication alongside the JWT Bearer assertion.

.NET
Go
Java
Python
TypeScript