Module Values.UpdateTopicRequestSource

Updates the configuration of the specified topic.

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 update configuration for.

    *)
  3. configs : string option;
    (*

    The new topic configurations encoded as a Base64 string.

    *)
  4. partitionCount : int option;
    (*

    The new total number of partitions for the topic.

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