Module Values_2.GetTableVersionsRequestSource

Retrieves a list of strings that identify available versions of a specified table.

Sourcetype nonrec t = {
  1. catalogId : Values_0.CatalogIdString.t option;
    (*

    The ID of the Data Catalog where the tables reside. If none is provided, the Amazon Web Services account ID is used by default.

    *)
  2. databaseName : Values_0.NameString.t;
    (*

    The database in the catalog in which the table resides. For Hive compatibility, this name is entirely lowercase.

    *)
  3. tableName : Values_0.NameString.t;
    (*

    The name of the table. For Hive compatibility, this name is entirely lowercase.

    *)
  4. nextToken : Values_1.Token.t option;
    (*

    A continuation token, if this is not the first call.

    *)
  5. maxResults : Values_0.CatalogGetterPageSize.t option;
    (*

    The maximum number of table versions to return in one response.

    *)
  6. auditContext : Values_0.AuditContext.t option;
}
Sourceval context_ : string
Sourceval make : ?catalogId:??? -> ?nextToken:??? -> ?maxResults:??? -> ?auditContext:??? -> databaseName:Values_0.NameString.t -> tableName:Values_0.NameString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Values_0.CatalogGetterPageSize.t | `String of Values_0.CatalogIdString.t | `Structure of (string * [> `Boolean of bool | `List of [> `String of string ] list | `String of string ]) list ]) 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