Class: Aws::Athena::Types::NamedQuery
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::NamedQuery
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-athena/types.rb
Overview
A query, where ‘QueryString` contains the SQL statements that make up the query.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#database ⇒ String
The database to which the query belongs.
-
#description ⇒ String
The query description.
-
#name ⇒ String
The query name.
-
#named_query_id ⇒ String
The unique identifier of the query.
-
#query_string ⇒ String
The SQL statements that make up the query.
-
#work_group ⇒ String
The name of the workgroup that contains the named query.
Instance Attribute Details
#database ⇒ String
The database to which the query belongs.
2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 |
# File 'lib/aws-sdk-athena/types.rb', line 2882 class NamedQuery < Struct.new( :name, :description, :database, :query_string, :named_query_id, :work_group) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
The query description.
2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 |
# File 'lib/aws-sdk-athena/types.rb', line 2882 class NamedQuery < Struct.new( :name, :description, :database, :query_string, :named_query_id, :work_group) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The query name.
2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 |
# File 'lib/aws-sdk-athena/types.rb', line 2882 class NamedQuery < Struct.new( :name, :description, :database, :query_string, :named_query_id, :work_group) SENSITIVE = [] include Aws::Structure end |
#named_query_id ⇒ String
The unique identifier of the query.
2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 |
# File 'lib/aws-sdk-athena/types.rb', line 2882 class NamedQuery < Struct.new( :name, :description, :database, :query_string, :named_query_id, :work_group) SENSITIVE = [] include Aws::Structure end |
#query_string ⇒ String
The SQL statements that make up the query.
2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 |
# File 'lib/aws-sdk-athena/types.rb', line 2882 class NamedQuery < Struct.new( :name, :description, :database, :query_string, :named_query_id, :work_group) SENSITIVE = [] include Aws::Structure end |
#work_group ⇒ String
The name of the workgroup that contains the named query.
2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 |
# File 'lib/aws-sdk-athena/types.rb', line 2882 class NamedQuery < Struct.new( :name, :description, :database, :query_string, :named_query_id, :work_group) SENSITIVE = [] include Aws::Structure end |