pub struct Builder { /* private fields */ }
Expand description
A builder for DevEnvironmentSessionConfiguration
.
Implementations§
source§impl Builder
impl Builder
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
.