Module Values.TopicInfoSource

Includes identification info about the topic.

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

    The Amazon Resource Name (ARN) of the topic.

    *)
  2. topicName : string option;
    (*

    Name for a topic.

    *)
  3. replicationFactor : int option;
    (*

    Replication factor for a topic.

    *)
  4. partitionCount : int option;
    (*

    Partition count for a topic.

    *)
  5. outOfSyncReplicaCount : int option;
    (*

    Number of out-of-sync replicas for a topic.

    *)
}
Sourceval make : ?topicArn:??? -> ?topicName:??? -> ?replicationFactor:??? -> ?partitionCount:??? -> ?outOfSyncReplicaCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of int | `String 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