Module Values_2.GetTableRequestSource

Retrieves the Table definition in a Data Catalog for a specified table.

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

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

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

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

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

    The name of the table for which to retrieve the definition. For Hive compatibility, this name is entirely lowercase.

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

    The transaction ID at which to read the table contents.

    *)
  5. 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.

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

    A structure containing the Lake Formation audit context.

    *)
  7. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?catalogId:??? -> ?transactionId:??? -> ?queryAsOfTime:??? -> ?auditContext:??? -> ?includeStatusDetails:??? -> databaseName:Values_0.NameString.t -> name:Values_0.NameString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.BooleanNullable.t | `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