Class: Aws::Glue::Types::SupportedDialect
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::SupportedDialect
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
A structure specifying the dialect and dialect version used by the query engine.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #dialect  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The dialect of the query engine. 
- 
  
    
      #dialect_version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The version of the dialect of the query engine. 
Instance Attribute Details
#dialect ⇒ String
The dialect of the query engine.
| 24914 24915 24916 24917 24918 24919 | # File 'lib/aws-sdk-glue/types.rb', line 24914 class SupportedDialect < Struct.new( :dialect, :dialect_version) SENSITIVE = [] include Aws::Structure end | 
#dialect_version ⇒ String
The version of the dialect of the query engine. For example, 3.0.0.
| 24914 24915 24916 24917 24918 24919 | # File 'lib/aws-sdk-glue/types.rb', line 24914 class SupportedDialect < Struct.new( :dialect, :dialect_version) SENSITIVE = [] include Aws::Structure end |