Class: Aws::Athena::Types::EngineVersion
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::EngineVersion
- Defined in:
- gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb
Overview
Note:
When making an API call, you may pass EngineVersion data as a hash:
{
selected_engine_version: "NameString",
effective_engine_version: "NameString",
}
The Athena engine version for running queries.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#effective_engine_version ⇒ String
Read only.
-
#selected_engine_version ⇒ String
The engine version requested by the user.
Instance Attribute Details
#effective_engine_version ⇒ String
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.
897 898 899 900 901 902 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 897 class EngineVersion < Struct.new( :selected_engine_version, :effective_engine_version) SENSITIVE = [] include Aws::Structure end |
#selected_engine_version ⇒ String
The engine version requested by the user. Possible values are
determined by the output of ListEngineVersions
, including Auto.
The default is Auto.
897 898 899 900 901 902 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 897 class EngineVersion < Struct.new( :selected_engine_version, :effective_engine_version) SENSITIVE = [] include Aws::Structure end |