Module Values.CreateTopicRequestSource

Creates a topic in the specified MSK cluster.

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

    The Amazon Resource Name (ARN) that uniquely identifies the cluster.

    *)
  2. topicName : string;
    (*

    The name of the topic to create.

    *)
  3. partitionCount : int;
    (*

    The number of partitions for the topic.

    *)
  4. replicationFactor : int;
    (*

    The replication factor for the topic.

    *)
  5. configs : string option;
    (*

    Topic configurations encoded as a Base64 string.

    *)
}
Sourceval context_ : string
Sourceval make : ?configs:??? -> clusterArn:string -> topicName:string -> partitionCount:int -> replicationFactor:int -> 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