Module Values_2.GetTablesRequestSource

Retrieves the definitions of some or all of the tables in a given Database.

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 whose tables to list. For Hive compatibility, this name is entirely lowercase.

    *)
  3. expression : Values_1.FilterString.t option;
    (*

    A regular expression pattern. If present, only those tables whose names match the pattern are returned.

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

    A continuation token, included if this is a continuation call.

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

    The maximum number of tables to return in a single response.

    *)
  6. transactionId : Values_0.TransactionIdString.t option;
    (*

    The transaction ID at which to read the table contents.

    *)
  7. queryAsOfTime : Values_0.Timestamp.t option;
    (*

    The time as of when to read the table contents. If not set, the most recent transaction commit time will be used. Cannot be specified along with TransactionId.

    *)
  8. auditContext : Values_0.AuditContext.t option;
    (*

    A structure containing the Lake Formation audit context.

    *)
  9. includeStatusDetails : Values_0.BooleanNullable.t option;
    (*

    Specifies whether to include status details related to a request to create or update an Glue Data Catalog view.

    *)
  10. attributesToGet : TableAttributesList.t option;
    (*

    Specifies the table fields returned by the GetTables call. This parameter doesn’t accept an empty list. The request must include NAME. The following are the valid combinations of values: NAME - Names of all tables in the database. NAME, TABLE_TYPE - Names of all tables and the table types.

    *)
}
Sourceval context_ : string
Sourceval make : ?catalogId:??? -> ?expression:??? -> ?nextToken:??? -> ?maxResults:??? -> ?transactionId:??? -> ?queryAsOfTime:??? -> ?auditContext:??? -> ?includeStatusDetails:??? -> ?attributesToGet:??? -> databaseName:Values_0.NameString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.BooleanNullable.t | `Integer of Values_0.CatalogGetterPageSize.t | `List of [> `Enum of string ] list | `String of Values_0.CatalogIdString.t | `Structure of (string * [> `Boolean of bool | `List of [> `String of string ] list | `String of string ]) list | `Timestamp of Values_0.Timestamp.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