Class: Aws::Athena::Types::EngineVersion

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb

Overview

The Athena engine version for running queries, or the PySpark engine version for running sessions.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#effective_engine_versionString

Read only. The engine version on which the query runs. If the user requests a valid engine version other than Auto, the effective engine version is the same as the engine version that the user requested. If the user requests Auto, the effective engine version is chosen by Athena. When a request to update the engine version is made by a CreateWorkGroup or UpdateWorkGroup operation, the EffectiveEngineVersion field is ignored.

Returns:

  • (String)


1445
1446
1447
1448
1449
1450
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 1445

class EngineVersion < Struct.new(
  :selected_engine_version,
  :effective_engine_version)
  SENSITIVE = []
  include Aws::Structure
end

#selected_engine_versionString

The engine version requested by the user. Possible values are determined by the output of ListEngineVersions, including AUTO. The default is AUTO.

Returns:

  • (String)


1445
1446
1447
1448
1449
1450
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 1445

class EngineVersion < Struct.new(
  :selected_engine_version,
  :effective_engine_version)
  SENSITIVE = []
  include Aws::Structure
end