Module Values.UpdateReplicationInfoRequestSource

Update information relating to replication between a given source and target Kafka cluster.

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

    Updated consumer group replication information.

    *)
  2. currentVersion : string;
    (*

    Current replicator version.

    *)
  3. replicatorArn : string;
    (*

    The Amazon Resource Name (ARN) of the replicator to be updated.

    *)
  4. sourceKafkaClusterArn : string option;
    (*

    The ARN of the source Kafka cluster.

    *)
  5. sourceKafkaClusterId : string option;
    (*

    The ID of the source Kafka cluster.

    *)
  6. targetKafkaClusterArn : string option;
    (*

    The ARN of the target Kafka cluster.

    *)
  7. targetKafkaClusterId : string option;
    (*

    The ID of the target Kafka cluster.

    *)
  8. topicReplication : TopicReplicationUpdate.t option;
    (*

    Updated topic replication information.

    *)
  9. logDelivery : LogDelivery.t option;
    (*

    Configuration for delivering replicator logs to customer destinations.

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