Struct aws_sdk_athena::output::GetSessionOutput
source · #[non_exhaustive]pub struct GetSessionOutput { /* private fields */ }
Implementations§
source§impl GetSessionOutput
impl GetSessionOutput
sourcepub fn session_id(&self) -> Option<&str>
pub fn session_id(&self) -> Option<&str>
The session ID.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The session description.
sourcepub fn work_group(&self) -> Option<&str>
pub fn work_group(&self) -> Option<&str>
The workgroup to which the session belongs.
sourcepub fn engine_version(&self) -> Option<&str>
pub fn engine_version(&self) -> Option<&str>
The engine version used by the session (for example, PySpark engine version 3
). You can get a list of engine versions by calling ListEngineVersions
.
sourcepub fn engine_configuration(&self) -> Option<&EngineConfiguration>
pub fn engine_configuration(&self) -> Option<&EngineConfiguration>
Contains engine configuration information like DPU usage.
sourcepub fn notebook_version(&self) -> Option<&str>
pub fn notebook_version(&self) -> Option<&str>
The notebook version.
sourcepub fn session_configuration(&self) -> Option<&SessionConfiguration>
pub fn session_configuration(&self) -> Option<&SessionConfiguration>
Contains the workgroup configuration information used by the session.
sourcepub fn status(&self) -> Option<&SessionStatus>
pub fn status(&self) -> Option<&SessionStatus>
Contains information about the status of the session.
sourcepub fn statistics(&self) -> Option<&SessionStatistics>
pub fn statistics(&self) -> Option<&SessionStatistics>
Contains the DPU execution time.
source§impl GetSessionOutput
impl GetSessionOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetSessionOutput
.
Trait Implementations§
source§impl Clone for GetSessionOutput
impl Clone for GetSessionOutput
source§fn clone(&self) -> GetSessionOutput
fn clone(&self) -> GetSessionOutput
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 GetSessionOutput
impl Debug for GetSessionOutput
source§impl PartialEq<GetSessionOutput> for GetSessionOutput
impl PartialEq<GetSessionOutput> for GetSessionOutput
source§fn eq(&self, other: &GetSessionOutput) -> bool
fn eq(&self, other: &GetSessionOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.