Struct aws_sdk_athena::model::SessionConfiguration
source · #[non_exhaustive]pub struct SessionConfiguration { /* private fields */ }
Expand description
Contains session configuration information.
Implementations§
source§impl SessionConfiguration
impl SessionConfiguration
sourcepub fn execution_role(&self) -> Option<&str>
pub fn execution_role(&self) -> Option<&str>
The ARN of the execution role used for the session.
sourcepub fn working_directory(&self) -> Option<&str>
pub fn working_directory(&self) -> Option<&str>
The Amazon S3 location that stores information for the notebook.
sourcepub fn idle_timeout_seconds(&self) -> Option<i64>
pub fn idle_timeout_seconds(&self) -> Option<i64>
The idle timeout in seconds for the session.
sourcepub fn encryption_configuration(&self) -> Option<&EncryptionConfiguration>
pub fn encryption_configuration(&self) -> Option<&EncryptionConfiguration>
If query results are encrypted in Amazon S3, indicates the encryption option used (for example, SSE_KMS
or CSE_KMS
) and key information.
source§impl SessionConfiguration
impl SessionConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SessionConfiguration
.
Trait Implementations§
source§impl Clone for SessionConfiguration
impl Clone for SessionConfiguration
source§fn clone(&self) -> SessionConfiguration
fn clone(&self) -> SessionConfiguration
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 SessionConfiguration
impl Debug for SessionConfiguration
source§impl PartialEq<SessionConfiguration> for SessionConfiguration
impl PartialEq<SessionConfiguration> for SessionConfiguration
source§fn eq(&self, other: &SessionConfiguration) -> bool
fn eq(&self, other: &SessionConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.