Module Values.DescribePackagesRequestSource

Container for request parameters to DescribePackage operation.

Sourcetype nonrec t = {
  1. filters : DescribePackagesFilterList.t option;
    (*

    Only returns packages that match the DescribePackagesFilterList values.

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

    Limits results to a maximum number of packages.

    *)
  3. nextToken : NextToken.t option;
    (*

    Used for pagination. Only necessary if a previous API call includes a non-null NextToken value. If provided, returns results for the next page.

    *)
}
Sourceval make : ?filters:??? -> ?maxResults:??? -> ?nextToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `List of [> `Structure of (string * [> `Enum of string | `List of [> `String of DescribePackagesFilterValue.t ] list ]) list ] list | `String of NextToken.t ]) 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