Struct aws_sdk_athena::input::StartSessionInput
source · #[non_exhaustive]pub struct StartSessionInput { /* private fields */ }
Implementations§
source§impl StartSessionInput
impl StartSessionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<StartSession, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<StartSession, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<StartSession
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StartSessionInput
.
source§impl StartSessionInput
impl StartSessionInput
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_configuration(&self) -> Option<&EngineConfiguration>
pub fn engine_configuration(&self) -> Option<&EngineConfiguration>
Contains engine data processing unit (DPU) configuration settings and parameter mappings.
sourcepub fn notebook_version(&self) -> Option<&str>
pub fn notebook_version(&self) -> Option<&str>
The notebook version. This value is required only when requesting that a notebook server be started for the session. The only valid notebook version is Jupyter1.0
.
sourcepub fn session_idle_timeout_in_minutes(&self) -> Option<i32>
pub fn session_idle_timeout_in_minutes(&self) -> Option<i32>
The idle timeout in minutes for the session.
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
A unique case-sensitive string used to ensure the request to create the session is idempotent (executes only once). If another StartSessionRequest
is received, the same response is returned and another session is not created. If a parameter has changed, an error is returned.
This token is listed as not required because Amazon Web Services SDKs (for example the Amazon Web Services SDK for Java) auto-generate the token for users. If you are not using the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide this token or the action will fail.
Trait Implementations§
source§impl Clone for StartSessionInput
impl Clone for StartSessionInput
source§fn clone(&self) -> StartSessionInput
fn clone(&self) -> StartSessionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for StartSessionInput
impl Debug for StartSessionInput
source§impl PartialEq<StartSessionInput> for StartSessionInput
impl PartialEq<StartSessionInput> for StartSessionInput
source§fn eq(&self, other: &StartSessionInput) -> bool
fn eq(&self, other: &StartSessionInput) -> bool
self
and other
values to be equal, and is used
by ==
.