Interface CfnReplicatorPropsMixin.KafkaClusterSaslOAuthBearerAuthenticationProperty

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

@Stability(Stable) public static interface CfnReplicatorPropsMixin.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.cfnpropertymixins.services.msk.*;
 KafkaClusterSaslOAuthBearerAuthenticationProperty kafkaClusterSaslOAuthBearerAuthenticationProperty = KafkaClusterSaslOAuthBearerAuthenticationProperty.builder()
         .clientCredentials(KafkaClusterOAuthClientCredentialsProperty.builder()
                 .tokenRequestSecretArn("tokenRequestSecretArn")
                 .build())
         .clientCredentialsAssertion(KafkaClusterOAuthClientCredentialsAssertionProperty.builder()
                 .audience("audience")
                 .signingAlgorithm("signingAlgorithm")
                 .tokenRequestSecretArn("tokenRequestSecretArn")
                 .build())
         .iamJwtBearer(KafkaClusterOAuthIamJwtBearerProperty.builder()
                 .audience("audience")
                 .signingAlgorithm("signingAlgorithm")
                 .tokenRequestSecretArn("tokenRequestSecretArn")
                 .build())
         .scope("scope")
         .tokenEndpointAuthenticationMethod("tokenEndpointAuthenticationMethod")
         .tokenEndpointTlsCertificateArn("tokenEndpointTlsCertificateArn")
         .tokenEndpointUrl("tokenEndpointUrl")
         .build();
 

See Also: