Class: Aws::Athena::Types::NamedQuery
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Athena::Types::NamedQuery
 
- Defined in:
- gems/aws-sdk-athena/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.
| 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 | # File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 3162 class NamedQuery < Struct.new( :name, :description, :database, :query_string, :named_query_id, :work_group) SENSITIVE = [] include Aws::Structure end | 
#description ⇒ String
The query description.
| 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 | # File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 3162 class NamedQuery < Struct.new( :name, :description, :database, :query_string, :named_query_id, :work_group) SENSITIVE = [] include Aws::Structure end | 
#name ⇒ String
The query name.
| 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 | # File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 3162 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.
| 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 | # File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 3162 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.
| 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 | # File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 3162 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.
| 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 | # File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 3162 class NamedQuery < Struct.new( :name, :description, :database, :query_string, :named_query_id, :work_group) SENSITIVE = [] include Aws::Structure end |