pub struct EngineVersion {
pub effective_engine_version: Option<String>,
pub selected_engine_version: Option<String>,
}Expand description
The Athena engine version for running queries.
Fields§
§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.
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.
Trait Implementations§
Source§impl Clone for EngineVersion
impl Clone for EngineVersion
Source§fn clone(&self) -> EngineVersion
fn clone(&self) -> EngineVersion
Returns a duplicate 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 Default for EngineVersion
impl Default for EngineVersion
Source§fn default() -> EngineVersion
fn default() -> EngineVersion
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EngineVersion
impl<'de> Deserialize<'de> for EngineVersion
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for EngineVersion
impl PartialEq for EngineVersion
Source§impl Serialize for EngineVersion
impl Serialize for EngineVersion
impl StructuralPartialEq for EngineVersion
Auto Trait Implementations§
impl Freeze for EngineVersion
impl RefUnwindSafe for EngineVersion
impl Send for EngineVersion
impl Sync for EngineVersion
impl Unpin for EngineVersion
impl UnwindSafe for EngineVersion
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more