Interface CfnReplicator.KafkaClusterSaslOAuthBearerAuthenticationProperty

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

@Stability(Stable) public static interface CfnReplicator.KafkaClusterSaslOAuthBearerAuthenticationProperty extends software.amazon.jsii.JsiiSerializable
Details for client authentication using SASL/OAUTHBEARER.

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.*;
 KafkaClusterSaslOAuthBearerAuthenticationProperty kafkaClusterSaslOAuthBearerAuthenticationProperty = KafkaClusterSaslOAuthBearerAuthenticationProperty.builder()
         .tokenEndpointAuthenticationMethod("tokenEndpointAuthenticationMethod")
         .tokenEndpointUrl("tokenEndpointUrl")
         // the properties below are optional
         .clientCredentials(KafkaClusterOAuthClientCredentialsProperty.builder()
                 .tokenRequestSecretArn("tokenRequestSecretArn")
                 .build())
         .clientCredentialsAssertion(KafkaClusterOAuthClientCredentialsAssertionProperty.builder()
                 .audience("audience")
                 .signingAlgorithm("signingAlgorithm")
                 // the properties below are optional
                 .tokenRequestSecretArn("tokenRequestSecretArn")
                 .build())
         .iamJwtBearer(KafkaClusterOAuthIamJwtBearerProperty.builder()
                 .audience("audience")
                 .signingAlgorithm("signingAlgorithm")
                 // the properties below are optional
                 .tokenRequestSecretArn("tokenRequestSecretArn")
                 .build())
         .scope("scope")
         .tokenEndpointTlsCertificateArn("tokenEndpointTlsCertificateArn")
         .build();
 

See Also: