@Stability(value=Stable)
public static interface CfnWorkGroup.EngineVersionProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnWorkGroup.EngineVersionProperty.Builder
A builder for
CfnWorkGroup.EngineVersionProperty |
static class |
CfnWorkGroup.EngineVersionProperty.Jsii$Proxy
An implementation for
CfnWorkGroup.EngineVersionProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnWorkGroup.EngineVersionProperty.Builder |
builder() |
default String |
getEffectiveEngineVersion()
Read only.
|
default String |
getSelectedEngineVersion()
The engine version requested by the user.
|
@Stability(value=Stable) @Nullable default String getEffectiveEngineVersion()
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.
@Stability(value=Stable) @Nullable default String getSelectedEngineVersion()
Possible values are determined by the output of ListEngineVersions , including Auto. The default is Auto.
@Stability(value=Stable) static CfnWorkGroup.EngineVersionProperty.Builder builder()
Copyright © 2022. All rights reserved.