Struct aws_sdk_athena::model::SessionSummary
source · #[non_exhaustive]pub struct SessionSummary { /* private fields */ }
Expand description
Contains summary information about a notebook session.
Implementations§
source§impl SessionSummary
impl SessionSummary
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 engine_version(&self) -> Option<&EngineVersion>
pub fn engine_version(&self) -> Option<&EngineVersion>
The engine version used by the session (for example, PySpark engine version 3
).
sourcepub fn notebook_version(&self) -> Option<&str>
pub fn notebook_version(&self) -> Option<&str>
The notebook version.
sourcepub fn status(&self) -> Option<&SessionStatus>
pub fn status(&self) -> Option<&SessionStatus>
Contains information about the session status.
source§impl SessionSummary
impl SessionSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SessionSummary
.
Trait Implementations§
source§impl Clone for SessionSummary
impl Clone for SessionSummary
source§fn clone(&self) -> SessionSummary
fn clone(&self) -> SessionSummary
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 SessionSummary
impl Debug for SessionSummary
source§impl PartialEq<SessionSummary> for SessionSummary
impl PartialEq<SessionSummary> for SessionSummary
source§fn eq(&self, other: &SessionSummary) -> bool
fn eq(&self, other: &SessionSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.