Class: Aws::Glue::Types::SupportedDialect

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#dialectString

The dialect of the query engine.

Returns:

  • (String)


20803
20804
20805
20806
20807
20808
# File 'lib/aws-sdk-glue/types.rb', line 20803

class SupportedDialect < Struct.new(
  :dialect,
  :dialect_version)
  SENSITIVE = []
  include Aws::Structure
end

#dialect_versionString

The version of the dialect of the query engine. For example, 3.0.0.

Returns:

  • (String)


20803
20804
20805
20806
20807
20808
# File 'lib/aws-sdk-glue/types.rb', line 20803

class SupportedDialect < Struct.new(
  :dialect,
  :dialect_version)
  SENSITIVE = []
  include Aws::Structure
end