Module Values.DataReplicationMetadataOutputSource

The replication details of the data replication-enabled broker. Only returned if dataReplicationMode or pendingDataReplicationMode is set to CRDR.

Sourcetype nonrec t = {
  1. dataReplicationCounterpart : DataReplicationCounterpart.t option;
    (*

    Describes the replica/primary broker. Only returned if this broker is currently set as a primary or replica in the broker's dataReplicationRole property.

    *)
  2. dataReplicationRole : string option;
    (*

    Defines the role of this broker in a data replication pair. When a replica broker is promoted to primary, this role is interchanged.

    *)
}
Sourceval make : ?dataReplicationCounterpart:??? -> ?dataReplicationRole:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string | `Structure of (string * [> `String 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