aws-cdk-lib.aws_athena.CfnWorkGroup.EngineVersionProperty

interface EngineVersionProperty

LanguageType name
.NETAmazon.CDK.AWS.Athena.CfnWorkGroup.EngineVersionProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsathena#CfnWorkGroup_EngineVersionProperty
Javasoftware.amazon.awscdk.services.athena.CfnWorkGroup.EngineVersionProperty
Pythonaws_cdk.aws_athena.CfnWorkGroup.EngineVersionProperty
TypeScript aws-cdk-lib » aws_athena » CfnWorkGroup » EngineVersionProperty

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 { aws_athena as athena } from 'aws-cdk-lib';
const engineVersionProperty: athena.CfnWorkGroup.EngineVersionProperty = {
  effectiveEngineVersion: 'effectiveEngineVersion',
  selectedEngineVersion: 'selectedEngineVersion',
};

Properties

NameTypeDescription
effectiveEngineVersion?stringRead only.
selectedEngineVersion?stringThe engine version requested by the user.

effectiveEngineVersion?

Type: string (optional)

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.


selectedEngineVersion?

Type: string (optional)

The engine version requested by the user.

Possible values are determined by the output of ListEngineVersions , including AUTO. The default is AUTO.