Values.AthenaTableReferenceSourceA reference to a table within Athena.
type nonrec t = {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.
*)workGroup : AthenaWorkGroup.t;The workgroup of the Athena table reference.
*)outputLocation : AthenaOutputLocation.t option;The output location for the Athena table.
*)databaseName : AthenaDatabaseName.t;The database name.
*)tableName : AthenaTableName.t;The table reference.
*)catalogName : AthenaCatalogName.t option;The catalog name.
*)}val make :
?region:??? ->
?outputLocation:??? ->
?catalogName:??? ->
workGroup:AthenaWorkGroup.t ->
databaseName:AthenaDatabaseName.t ->
tableName:AthenaTableName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of AthenaWorkGroup.t ]) list ]