pub struct Builder { /* private fields */ }
Expand description
A builder for SuiteRunConfiguration
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn primary_device(self, input: DeviceUnderTest) -> Self
pub fn primary_device(self, input: DeviceUnderTest) -> Self
Sets the primary device for the test suite run. This requires a thing ARN or a certificate ARN.
sourcepub fn set_primary_device(self, input: Option<DeviceUnderTest>) -> Self
pub fn set_primary_device(self, input: Option<DeviceUnderTest>) -> Self
Sets the primary device for the test suite run. This requires a thing ARN or a certificate ARN.
sourcepub fn selected_test_list(self, input: impl Into<String>) -> Self
pub fn selected_test_list(self, input: impl Into<String>) -> Self
Appends an item to selected_test_list
.
To override the contents of this collection use set_selected_test_list
.
Sets test case list.
sourcepub fn set_selected_test_list(self, input: Option<Vec<String>>) -> Self
pub fn set_selected_test_list(self, input: Option<Vec<String>>) -> Self
Sets test case list.
sourcepub fn parallel_run(self, input: bool) -> Self
pub fn parallel_run(self, input: bool) -> Self
TRUE if multiple test suites run in parallel.
sourcepub fn set_parallel_run(self, input: Option<bool>) -> Self
pub fn set_parallel_run(self, input: Option<bool>) -> Self
TRUE if multiple test suites run in parallel.
sourcepub fn build(self) -> SuiteRunConfiguration
pub fn build(self) -> SuiteRunConfiguration
Consumes the builder and constructs a SuiteRunConfiguration
.