Show / Hide Table of Contents

Class CfnWorkGroupPropsMixin.EngineVersionProperty

The Athena engine version for running queries, or the PySpark engine version for running sessions.

Inheritance
object
CfnWorkGroupPropsMixin.EngineVersionProperty
Implements
CfnWorkGroupPropsMixin.IEngineVersionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-engineversion.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-engineversion.html

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

string

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-engineversion.html#cfn-athena-workgroup-engineversion-effectiveengineversion

SelectedEngineVersion

The engine version requested by the user.

public string? SelectedEngineVersion { get; set; }
Property Value

string

Remarks

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-engineversion.html#cfn-athena-workgroup-engineversion-selectedengineversion

Implements

CfnWorkGroupPropsMixin.IEngineVersionProperty
Back to top Generated by DocFX