Class: Aws::Athena::Types::QueryExecutionContext
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::QueryExecutionContext
- Defined in:
- gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb
Overview
Note:
When making an API call, you may pass QueryExecutionContext data as a hash:
{
database: "DatabaseString",
catalog: "CatalogNameString",
}
The database and data catalog context in which the query execution occurs.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#catalog ⇒ String
The name of the data catalog used in the query execution.
-
#database ⇒ String
The name of the database used in the query execution.
Instance Attribute Details
#catalog ⇒ String
The name of the data catalog used in the query execution.
1878 1879 1880 1881 1882 1883 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 1878 class QueryExecutionContext < Struct.new( :database, :catalog) SENSITIVE = [] include Aws::Structure end |
#database ⇒ String
The name of the database used in the query execution. The database must exist in the catalog.
1878 1879 1880 1881 1882 1883 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 1878 class QueryExecutionContext < Struct.new( :database, :catalog) SENSITIVE = [] include Aws::Structure end |