Class CfnWorkGroupPropsMixin.EngineVersionProperty
The Athena engine version for running queries, or the PySpark engine version for running sessions.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Athena.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnWorkGroupPropsMixin.EngineVersionProperty : CfnWorkGroupPropsMixin.IEngineVersionProperty
Syntax (vb)
Public Class CfnWorkGroupPropsMixin.EngineVersionProperty Implements CfnWorkGroupPropsMixin.IEngineVersionProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Athena.Mixins;
var engineVersionProperty = new EngineVersionProperty {
EffectiveEngineVersion = "effectiveEngineVersion",
SelectedEngineVersion = "selectedEngineVersion"
};
Synopsis
Constructors
| EngineVersionProperty() | The Athena engine version for running queries, or the PySpark engine version for running sessions. |
Properties
| EffectiveEngineVersion | Read only. |
| SelectedEngineVersion | The engine version requested by the user. |
Constructors
EngineVersionProperty()
The Athena engine version for running queries, or the PySpark engine version for running sessions.
public EngineVersionProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.Athena.Mixins;
var engineVersionProperty = new EngineVersionProperty {
EffectiveEngineVersion = "effectiveEngineVersion",
SelectedEngineVersion = "selectedEngineVersion"
};
Properties
EffectiveEngineVersion
Read only.
public string? EffectiveEngineVersion { get; set; }
Property Value
Remarks
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.
SelectedEngineVersion
The engine version requested by the user.
public string? SelectedEngineVersion { get; set; }
Property Value
Remarks
Possible values are determined by the output of ListEngineVersions , including AUTO. The default is AUTO.