Module Values.ReplicationInfoSource

Specifies configuration for replication between a source and target Kafka cluster.

Sourcetype nonrec t = {
  1. consumerGroupReplication : ConsumerGroupReplication.t;
    (*

    Configuration relating to consumer group replication.

    *)
  2. sourceKafkaClusterArn : string option;
    (*

    The ARN of the source Kafka cluster.

    *)
  3. sourceKafkaClusterId : string option;
    (*

    The ID of the source Kafka cluster.

    *)
  4. targetCompressionType : TargetCompressionType.t;
    (*

    The compression type to use when producing records to target cluster.

    *)
  5. targetKafkaClusterArn : string option;
    (*

    The ARN of the target Kafka cluster.

    *)
  6. targetKafkaClusterId : string option;
    (*

    The ID of the target Kafka cluster.

    *)
  7. topicReplication : TopicReplication.t;
    (*

    Configuration relating to topic replication.

    *)
}
Sourceval context_ : string
Sourceval make : ?sourceKafkaClusterArn:??? -> ?sourceKafkaClusterId:??? -> ?targetKafkaClusterArn:??? -> ?targetKafkaClusterId:??? -> consumerGroupReplication:ConsumerGroupReplication.t -> targetCompressionType:TargetCompressionType.t -> topicReplication:TopicReplication.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of string | `Structure of (string * [> `Boolean of bool | `Enum of string | `List of [> `String of string ] list | `Structure of (string * [> `Enum of string ]) list ]) 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