Interface KafkaSchemaRegistryAccessConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
KafkaSchemaRegistryAccessConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)",
date="2025-08-06T18:14:39.769Z")
@Stability(Stable)
public interface KafkaSchemaRegistryAccessConfig
extends software.amazon.jsii.JsiiSerializable
Specific access configuration settings that tell Lambda how to authenticate with your schema registry.
If you're working with an AWS Glue schema registry, don't provide authentication details in this object. Instead, ensure that your execution role has the required permissions for Lambda to access your cluster.
If you're working with a Confluent schema registry, choose the authentication method in the Type field, and provide the AWS Secrets Manager secret ARN in the URI field.
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.lambda.*; KafkaSchemaRegistryAccessConfigType kafkaSchemaRegistryAccessConfigType; KafkaSchemaRegistryAccessConfig kafkaSchemaRegistryAccessConfig = KafkaSchemaRegistryAccessConfig.builder() .type(kafkaSchemaRegistryAccessConfigType) .uri("uri") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forKafkaSchemaRegistryAccessConfig
static final class
An implementation forKafkaSchemaRegistryAccessConfig
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getType
The type of authentication Lambda uses to access your schema registry. -
getUri
The URI of the secret (Secrets Manager secret ARN) to authenticate with your schema registry.- See Also:
-
builder
-