Interface CfnReplicatorPropsMixin.KafkaClusterOAuthClientCredentialsAssertionProperty

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

@Stability(Stable) public static interface CfnReplicatorPropsMixin.KafkaClusterOAuthClientCredentialsAssertionProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.msk.*;
 KafkaClusterOAuthClientCredentialsAssertionProperty kafkaClusterOAuthClientCredentialsAssertionProperty = KafkaClusterOAuthClientCredentialsAssertionProperty.builder()
         .audience("audience")
         .signingAlgorithm("signingAlgorithm")
         .tokenRequestSecretArn("tokenRequestSecretArn")
         .build();
 

See Also: