Module Values.DescribeLookupTablesRequestSource

Retrieves metadata about lookup tables in your account. You can optionally filter the results by table name prefix. Results are sorted by table name in ascending order.

Sourcetype nonrec t = {
  1. lookupTableNamePrefix : LookupTableName.t option;
    (*

    A prefix to filter lookup tables by name. Only tables whose names start with this prefix are returned. If you don't specify a prefix, all tables in the account and Region are returned.

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

    The maximum number of lookup tables to return in the response. The default value is 50 and the maximum value is 100.

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

    The token for the next set of items to return. (You received this token from a previous call.)

    *)
}
Sourceval make : ?lookupTableNamePrefix:??? -> ?maxResults:??? -> ?nextToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of DescribeLookupTablesMaxResults.t | `String of LookupTableName.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