Interface CfnWorkGroup.EngineVersionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkGroup.EngineVersionProperty.Jsii$Proxy
- Enclosing class:
CfnWorkGroup
@Stability(Stable)
public static interface CfnWorkGroup.EngineVersionProperty
extends software.amazon.jsii.JsiiSerializable
The Athena engine version for running queries, or the PySpark engine version for running sessions.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.athena.*; EngineVersionProperty engineVersionProperty = EngineVersionProperty.builder() .effectiveEngineVersion("effectiveEngineVersion") .selectedEngineVersion("selectedEngineVersion") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnWorkGroup.EngineVersionProperty
static final class
An implementation forCfnWorkGroup.EngineVersionProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEffectiveEngineVersion
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
orUpdateWorkGroup
operation, theEffectiveEngineVersion
field is ignored.- See Also:
-
getSelectedEngineVersion
The engine version requested by the user.Possible values are determined by the output of
ListEngineVersions
, including AUTO. The default is AUTO.- See Also:
-
builder
-