pub struct Builder { /* private fields */ }
Expand description
A builder for ExecuteCommandSessionConfiguration
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn command(self, input: impl Into<String>) -> Self
pub fn command(self, input: impl Into<String>) -> Self
The command used at the beginning of the SSH session to a Dev Environment.
sourcepub fn set_command(self, input: Option<String>) -> Self
pub fn set_command(self, input: Option<String>) -> Self
The command used at the beginning of the SSH session to a Dev Environment.
sourcepub fn arguments(self, input: impl Into<String>) -> Self
pub fn arguments(self, input: impl Into<String>) -> Self
Appends an item to arguments
.
To override the contents of this collection use set_arguments
.
An array of arguments containing arguments and members.
sourcepub fn set_arguments(self, input: Option<Vec<String>>) -> Self
pub fn set_arguments(self, input: Option<Vec<String>>) -> Self
An array of arguments containing arguments and members.
sourcepub fn build(self) -> ExecuteCommandSessionConfiguration
pub fn build(self) -> ExecuteCommandSessionConfiguration
Consumes the builder and constructs a ExecuteCommandSessionConfiguration
.