Module Values.KafkaSchemaRegistryConfigSource

Specific configuration settings for a Kafka schema registry.

Sourcetype nonrec t = {
  1. schemaRegistryURI : SchemaRegistryUri.t option;
    (*

    The URI for your schema registry. The correct URI format depends on the type of schema registry you're using. For Glue schema registries, use the ARN of the registry. For Confluent schema registries, use the URL of the registry.

    *)
  2. eventRecordFormat : SchemaRegistryEventRecordFormat.t option;
    (*

    The record format that Lambda delivers to your function after schema validation. Choose JSON to have Lambda deliver the record to your function as a standard JSON object. Choose SOURCE to have Lambda deliver the record to your function in its original source format. Lambda removes all schema metadata, such as the schema ID, before sending the record to your function.

    *)
  3. accessConfigs : KafkaSchemaRegistryAccessConfigList.t option;
    (*

    An array of access configuration objects that tell Lambda how to authenticate with your schema registry.

    *)
  4. schemaValidationConfigs : KafkaSchemaValidationConfigList.t option;
    (*

    An array of schema validation configuration objects, which tell Lambda the message attributes you want to validate and filter using your schema registry.

    *)
}
Sourceval make : ?schemaRegistryURI:??? -> ?eventRecordFormat:??? -> ?accessConfigs:??? -> ?schemaValidationConfigs:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `String of Arn.t ]) list ] list | `String of SchemaRegistryUri.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t