Interface EngineVersion.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<EngineVersion.Builder,EngineVersion>
,SdkBuilder<EngineVersion.Builder,EngineVersion>
,SdkPojo
- Enclosing class:
- EngineVersion
public static interface EngineVersion.Builder extends SdkPojo, CopyableBuilder<EngineVersion.Builder,EngineVersion>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EngineVersion.Builder
effectiveEngineVersion(String effectiveEngineVersion)
Read only.EngineVersion.Builder
selectedEngineVersion(String selectedEngineVersion)
The engine version requested by the user.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
selectedEngineVersion
EngineVersion.Builder selectedEngineVersion(String selectedEngineVersion)
The engine version requested by the user. Possible values are determined by the output of
ListEngineVersions
, including AUTO. The default is AUTO.- Parameters:
selectedEngineVersion
- The engine version requested by the user. Possible values are determined by the output ofListEngineVersions
, including AUTO. The default is AUTO.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
effectiveEngineVersion
EngineVersion.Builder effectiveEngineVersion(String effectiveEngineVersion)
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.- Parameters:
effectiveEngineVersion
- 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 aCreateWorkGroup
orUpdateWorkGroup
operation, theEffectiveEngineVersion
field is ignored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-