#[non_exhaustive]pub struct DevEnvironmentSessionConfigurationBuilder { /* private fields */ }
Expand description
A builder for DevEnvironmentSessionConfiguration
.
Implementations§
source§impl DevEnvironmentSessionConfigurationBuilder
impl DevEnvironmentSessionConfigurationBuilder
sourcepub fn session_type(self, input: DevEnvironmentSessionType) -> Self
pub fn session_type(self, input: DevEnvironmentSessionType) -> Self
The type of the session.
sourcepub fn set_session_type(self, input: Option<DevEnvironmentSessionType>) -> Self
pub fn set_session_type(self, input: Option<DevEnvironmentSessionType>) -> Self
The type of the session.
sourcepub fn execute_command_session_configuration(
self,
input: ExecuteCommandSessionConfiguration
) -> Self
pub fn execute_command_session_configuration( self, input: ExecuteCommandSessionConfiguration ) -> Self
Information about optional commands that will be run on the Dev Environment when the SSH session begins.
sourcepub fn set_execute_command_session_configuration(
self,
input: Option<ExecuteCommandSessionConfiguration>
) -> Self
pub fn set_execute_command_session_configuration( self, input: Option<ExecuteCommandSessionConfiguration> ) -> Self
Information about optional commands that will be run on the Dev Environment when the SSH session begins.
sourcepub fn build(self) -> DevEnvironmentSessionConfiguration
pub fn build(self) -> DevEnvironmentSessionConfiguration
Consumes the builder and constructs a DevEnvironmentSessionConfiguration
.
Trait Implementations§
source§impl Clone for DevEnvironmentSessionConfigurationBuilder
impl Clone for DevEnvironmentSessionConfigurationBuilder
source§fn clone(&self) -> DevEnvironmentSessionConfigurationBuilder
fn clone(&self) -> DevEnvironmentSessionConfigurationBuilder
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 Default for DevEnvironmentSessionConfigurationBuilder
impl Default for DevEnvironmentSessionConfigurationBuilder
source§fn default() -> DevEnvironmentSessionConfigurationBuilder
fn default() -> DevEnvironmentSessionConfigurationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<DevEnvironmentSessionConfigurationBuilder> for DevEnvironmentSessionConfigurationBuilder
impl PartialEq<DevEnvironmentSessionConfigurationBuilder> for DevEnvironmentSessionConfigurationBuilder
source§fn eq(&self, other: &DevEnvironmentSessionConfigurationBuilder) -> bool
fn eq(&self, other: &DevEnvironmentSessionConfigurationBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.