Module Values.TopicReplicationUpdateSource

Details for updating the topic replication of a replicator.

Sourcetype nonrec t = {
  1. copyAccessControlListsForTopics : bool;
    (*

    Whether to periodically configure remote topic ACLs to match their corresponding upstream topics.

    *)
  2. copyTopicConfigurations : bool;
    (*

    Whether to periodically configure remote topics to match their corresponding upstream topics.

    *)
  3. detectAndCopyNewTopics : bool;
    (*

    Whether to periodically check for new topics and partitions.

    *)
  4. topicsToExclude : string list;
    (*

    List of regular expression patterns indicating the topics that should not be replicated.

    *)
  5. topicsToReplicate : string list;
    (*

    List of regular expression patterns indicating the topics to copy.

    *)
}
Sourceval context_ : string
Sourceval make : copyAccessControlListsForTopics:bool -> copyTopicConfigurations:bool -> detectAndCopyNewTopics:bool -> topicsToExclude:string list -> topicsToReplicate:string list -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of bool | `List of [> `String of string ] 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