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
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.
3133 3134 3135 3136 3137 3138 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 3133 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.
3133 3134 3135 3136 3137 3138 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 3133 class QueryExecutionContext < Struct.new( :database, :catalog) SENSITIVE = [] include Aws::Structure end |