Module Values.CreateReplicatorRequestSource

Creates a replicator using the specified configuration.

Sourcetype nonrec t = {
  1. description : string option;
    (*

    A summary description of the replicator.

    *)
  2. kafkaClusters : KafkaCluster.t list;
    (*

    Kafka Clusters to use in setting up sources / targets for replication.

    *)
  3. replicationInfoList : ReplicationInfo.t list;
    (*

    A list of replication configurations, where each configuration targets a given source cluster to target cluster replication flow.

    *)
  4. replicatorName : string;
    (*

    The name of the replicator. Alpha-numeric characters with '-' are allowed.

    *)
  5. serviceExecutionRoleArn : string;
    (*

    The ARN of the IAM role used by the replicator to access resources in the customer's account (e.g source and target clusters)

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

    List of tags to attach to created Replicator.

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

    Configuration for delivering replicator logs to customer destinations.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?tags:??? -> ?logDelivery:??? -> kafkaClusters:KafkaCluster.t list -> replicationInfoList:ReplicationInfo.t list -> replicatorName:string -> serviceExecutionRoleArn:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of string | `Structure of (string * [> `Boolean of bool | `Enum of string | `List of [> `String of string ] list | `String of string | `Structure of (string * [> `Enum of string | `String of string ]) list ]) list ]) list ] list | `Map of ([> `String of string ] * [> `String of string ]) list | `String of string | `Structure of (string * [> `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