Module Values.SelfManagedKafkaEventSourceConfigSource

Specific configuration settings for a self-managed Apache Kafka event source.

Sourcetype nonrec t = {
  1. consumerGroupId : URI.t option;
    (*

    The identifier for the Kafka consumer group to join. The consumer group ID must be unique among all your Kafka event sources. After creating a Kafka event source mapping with the consumer group ID specified, you cannot update this value. For more information, see Customizable consumer group ID.

    *)
  2. schemaRegistryConfig : KafkaSchemaRegistryConfig.t option;
    (*

    Specific configuration settings for a Kafka schema registry.

    *)
}
Sourceval make : ?consumerGroupId:??? -> ?schemaRegistryConfig:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of URI.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 ]) 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