Module Values.ReplicatorSummarySource

Information about a replicator.

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

    The time the replicator was created.

    *)
  2. currentVersion : string option;
    (*

    The current version of the replicator.

    *)
  3. isReplicatorReference : bool option;
    (*

    Whether this resource is a replicator reference.

    *)
  4. kafkaClustersSummary : KafkaClusterSummary.t list option;
    (*

    Kafka Clusters used in setting up sources / targets for replication.

    *)
  5. replicationInfoSummaryList : ReplicationInfoSummary.t list option;
    (*

    A list of summarized information of replications between clusters.

    *)
  6. replicatorArn : string option;
    (*

    The Amazon Resource Name (ARN) of the replicator.

    *)
  7. replicatorName : string option;
    (*

    The name of the replicator.

    *)
  8. replicatorResourceArn : string option;
    (*

    The Amazon Resource Name (ARN) of the replicator resource in the region where the replicator was created.

    *)
  9. replicatorState : ReplicatorState.t option;
    (*

    State of the replicator.

    *)
}
Sourceval make : ?creationTime:??? -> ?currentVersion:??? -> ?isReplicatorReference:??? -> ?kafkaClustersSummary:??? -> ?replicationInfoSummaryList:??? -> ?replicatorArn:??? -> ?replicatorName:??? -> ?replicatorResourceArn:??? -> ?replicatorState:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of bool | `Enum of string | `List of [> `Structure of (string * [> `String of string | `Structure of (string * [> `String of string ]) list ]) list ] list | `String of string | `Timestamp of string ]) 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