Interface CfnReplicator.KafkaClusterOAuthIamJwtBearerProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnReplicator.KafkaClusterOAuthIamJwtBearerProperty.Jsii$Proxy
Enclosing class:
CfnReplicator

@Stability(Stable) public static interface CfnReplicator.KafkaClusterOAuthIamJwtBearerProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.msk.*;
 KafkaClusterOAuthIamJwtBearerProperty kafkaClusterOAuthIamJwtBearerProperty = KafkaClusterOAuthIamJwtBearerProperty.builder()
         .audience("audience")
         .signingAlgorithm("signingAlgorithm")
         // the properties below are optional
         .tokenRequestSecretArn("tokenRequestSecretArn")
         .build();
 

See Also: