Module Values.AthenaTableReferenceSource

A reference to a table within Athena.

Sourcetype nonrec t = {
  1. region : CommercialRegion.t option;
    (*

    The Amazon Web Services Region where the Athena table is located. This parameter is required to uniquely identify and access tables across different Regions.

    *)
  2. workGroup : AthenaWorkGroup.t;
    (*

    The workgroup of the Athena table reference.

    *)
  3. outputLocation : AthenaOutputLocation.t option;
    (*

    The output location for the Athena table.

    *)
  4. databaseName : AthenaDatabaseName.t;
    (*

    The database name.

    *)
  5. tableName : AthenaTableName.t;
    (*

    The table reference.

    *)
  6. catalogName : AthenaCatalogName.t option;
    (*

    The catalog name.

    *)
}
Sourceval context_ : string
Sourceval make : ?region:??? -> ?outputLocation:??? -> ?catalogName:??? -> workGroup:AthenaWorkGroup.t -> databaseName:AthenaDatabaseName.t -> tableName:AthenaTableName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AthenaWorkGroup.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