Struct aws_sdk_athena::model::EngineVersion
source · [−]#[non_exhaustive]pub struct EngineVersion {
pub selected_engine_version: Option<String>,
pub effective_engine_version: Option<String>,
}Expand description
The Athena engine version for running queries.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.selected_engine_version: Option<String>The engine version requested by the user. Possible values are determined by the output of ListEngineVersions, including Auto. The default is Auto.
effective_engine_version: Option<String>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.
Implementations
sourceimpl 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.
sourceimpl EngineVersion
impl EngineVersion
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EngineVersion
Trait Implementations
sourceimpl Clone for EngineVersion
impl Clone for EngineVersion
sourcefn clone(&self) -> EngineVersion
fn clone(&self) -> EngineVersion
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for EngineVersion
impl Debug for EngineVersion
sourceimpl PartialEq<EngineVersion> for EngineVersion
impl PartialEq<EngineVersion> for EngineVersion
sourcefn 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 ==. Read more
sourcefn ne(&self, other: &EngineVersion) -> bool
fn ne(&self, other: &EngineVersion) -> bool
This method tests for !=.
impl StructuralPartialEq for EngineVersion
Auto Trait Implementations
impl RefUnwindSafe for EngineVersion
impl Send for EngineVersion
impl Sync for EngineVersion
impl Unpin for EngineVersion
impl UnwindSafe for EngineVersion
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more