Interface CfnReplicator.KafkaClusterOAuthClientCredentialsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnReplicator.KafkaClusterOAuthClientCredentialsProperty.Jsii$Proxy
- Enclosing class:
CfnReplicator
@Stability(Stable)
public static interface CfnReplicator.KafkaClusterOAuthClientCredentialsProperty
extends software.amazon.jsii.JsiiSerializable
Details for SASL/OAUTHBEARER using the standard client_credentials grant.
The referenced secret must contain client_id and client_secret.
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.*;
KafkaClusterOAuthClientCredentialsProperty kafkaClusterOAuthClientCredentialsProperty = KafkaClusterOAuthClientCredentialsProperty.builder()
.tokenRequestSecretArn("tokenRequestSecretArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnReplicator.KafkaClusterOAuthClientCredentialsPropertystatic final classAn implementation forCfnReplicator.KafkaClusterOAuthClientCredentialsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Secrets Manager ARN of the secret containing the client_id and client_secret used to obtain an OAuth Bearer token via the client_credentials grant.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTokenRequestSecretArn
Secrets Manager ARN of the secret containing the client_id and client_secret used to obtain an OAuth Bearer token via the client_credentials grant.- See Also:
-
builder
@Stability(Stable) static CfnReplicator.KafkaClusterOAuthClientCredentialsProperty.Builder builder()
-