Module Values.DescribeTopicPartitionsRequestSource

Returns partition details of this topic on a MSK cluster.

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

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

    *)
  2. topicName : string;
    (*

    The Kafka topic name that uniquely identifies the topic.

    *)
  3. maxResults : MaxResults.t option;
    (*

    The maximum number of results to return in the response. If there are more results, the response includes a NextToken parameter.

    *)
  4. nextToken : string option;
    (*

    The paginated results marker. When the result of the operation is truncated, the call returns NextToken in the response. To get the next batch, provide this token in your next request.

    *)
}
Sourceval context_ : string
Sourceval make : ?maxResults:??? -> ?nextToken:??? -> clusterArn:string -> topicName:string -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `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