Struct aws_sdk_athena::model::EngineVersion
source · #[non_exhaustive]pub struct EngineVersion { /* private fields */ }
Expand description
The Athena engine version for running queries, or the PySpark engine version for running sessions.
Implementations§
source§impl EngineVersion
impl EngineVersion
sourcepub fn selected_engine_version(&self) -> Option<&str>
pub fn selected_engine_version(&self) -> Option<&str>
The engine version requested by the user. Possible values are determined by the output of ListEngineVersions
, including Auto. The default is Auto.
sourcepub fn effective_engine_version(&self) -> Option<&str>
pub fn effective_engine_version(&self) -> Option<&str>
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.
source§impl EngineVersion
impl EngineVersion
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EngineVersion
.
Trait Implementations§
source§impl Clone for EngineVersion
impl Clone for EngineVersion
source§fn clone(&self) -> EngineVersion
fn clone(&self) -> EngineVersion
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for EngineVersion
impl Debug for EngineVersion
source§impl PartialEq<EngineVersion> for EngineVersion
impl PartialEq<EngineVersion> for EngineVersion
source§fn eq(&self, other: &EngineVersion) -> bool
fn eq(&self, other: &EngineVersion) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.