Struct aws_sdk_athena::output::TerminateSessionOutput
source · #[non_exhaustive]pub struct TerminateSessionOutput { /* private fields */ }
Implementations§
source§impl TerminateSessionOutput
impl TerminateSessionOutput
sourcepub fn state(&self) -> Option<&SessionState>
pub fn state(&self) -> Option<&SessionState>
The state of the session. A description of each state follows.
CREATING
- The session is being started, including acquiring resources.
CREATED
- The session has been started.
IDLE
- The session is able to accept a calculation.
BUSY
- The session is processing another task and is unable to accept a calculation.
TERMINATING
- The session is in the process of shutting down.
TERMINATED
- The session and its resources are no longer running.
DEGRADED
- The session has no healthy coordinators.
FAILED
- Due to a failure, the session and its resources are no longer running.
source§impl TerminateSessionOutput
impl TerminateSessionOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TerminateSessionOutput
.
Trait Implementations§
source§impl Clone for TerminateSessionOutput
impl Clone for TerminateSessionOutput
source§fn clone(&self) -> TerminateSessionOutput
fn clone(&self) -> TerminateSessionOutput
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 TerminateSessionOutput
impl Debug for TerminateSessionOutput
source§impl PartialEq<TerminateSessionOutput> for TerminateSessionOutput
impl PartialEq<TerminateSessionOutput> for TerminateSessionOutput
source§fn eq(&self, other: &TerminateSessionOutput) -> bool
fn eq(&self, other: &TerminateSessionOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.