Module Values.TopicReplicationSource

Details about topic replication.

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

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

    *)
  2. copyTopicConfigurations : bool option;
    (*

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

    *)
  3. detectAndCopyNewTopics : bool option;
    (*

    Whether to periodically check for new topics and partitions.

    *)
  4. startingPosition : ReplicationStartingPosition.t option;
    (*

    Configuration for specifying the position in the topics to start replicating from.

    *)
  5. topicNameConfiguration : ReplicationTopicNameConfiguration.t option;
    (*

    Configuration for specifying replicated topic names should be the same as their corresponding upstream topics or prefixed with source cluster alias.

    *)
  6. topicsToExclude : string list option;
    (*

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

    *)
  7. topicsToReplicate : string list;
    (*

    List of regular expression patterns indicating the topics to copy.

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