Module Values.KafkaClusterDescriptionSource

Information about Kafka Cluster used as source / target for replication.

Sourcetype nonrec t = {
  1. amazonMskCluster : AmazonMskCluster.t option;
    (*

    Details of an Amazon MSK Cluster.

    *)
  2. apacheKafkaCluster : ApacheKafkaCluster.t option;
    (*

    Details of an Apache Kafka Cluster.

    *)
  3. kafkaClusterAlias : string option;
    (*

    The alias of the Kafka cluster. Used to prefix names of replicated topics.

    *)
  4. vpcConfig : KafkaClusterClientVpcConfig.t option;
    (*

    Details of an Amazon VPC which has network connectivity to the Apache Kafka cluster.

    *)
  5. clientAuthentication : KafkaClusterClientAuthentication.t option;
    (*

    Details of the client authentication used by the Apache Kafka cluster.

    *)
  6. encryptionInTransit : KafkaClusterEncryptionInTransit.t option;
    (*

    Details of encryption in transit to the Apache Kafka cluster.

    *)
}
Sourceval make : ?amazonMskCluster:??? -> ?apacheKafkaCluster:??? -> ?kafkaClusterAlias:??? -> ?vpcConfig:??? -> ?clientAuthentication:??? -> ?encryptionInTransit:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of string | `Structure of (string * [> `Enum of string | `List of [> `String of string ] list | `String of string | `Structure of (string * [> `Enum of string | `String 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