pub struct Builder { /* private fields */ }
Expand description
A builder for StartSuiteRunInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn suite_definition_id(self, input: impl Into<String>) -> Self
pub fn suite_definition_id(self, input: impl Into<String>) -> Self
Suite definition ID of the test suite.
sourcepub fn set_suite_definition_id(self, input: Option<String>) -> Self
pub fn set_suite_definition_id(self, input: Option<String>) -> Self
Suite definition ID of the test suite.
sourcepub fn suite_definition_version(self, input: impl Into<String>) -> Self
pub fn suite_definition_version(self, input: impl Into<String>) -> Self
Suite definition version of the test suite.
sourcepub fn set_suite_definition_version(self, input: Option<String>) -> Self
pub fn set_suite_definition_version(self, input: Option<String>) -> Self
Suite definition version of the test suite.
sourcepub fn suite_run_configuration(self, input: SuiteRunConfiguration) -> Self
pub fn suite_run_configuration(self, input: SuiteRunConfiguration) -> Self
Suite run configuration.
sourcepub fn set_suite_run_configuration(
self,
input: Option<SuiteRunConfiguration>
) -> Self
pub fn set_suite_run_configuration(
self,
input: Option<SuiteRunConfiguration>
) -> Self
Suite run configuration.
Adds a key-value pair to tags
.
To override the contents of this collection use set_tags
.
The tags to be attached to the suite run.
The tags to be attached to the suite run.
sourcepub fn build(self) -> Result<StartSuiteRunInput, BuildError>
pub fn build(self) -> Result<StartSuiteRunInput, BuildError>
Consumes the builder and constructs a StartSuiteRunInput
.