#[non_exhaustive]pub struct SuiteDefinitionConfiguration { /* private fields */ }
Expand description
Gets the suite definition configuration.
Implementations§
source§impl SuiteDefinitionConfiguration
impl SuiteDefinitionConfiguration
sourcepub fn suite_definition_name(&self) -> Option<&str>
pub fn suite_definition_name(&self) -> Option<&str>
Gets the suite definition name. This is a required parameter.
sourcepub fn devices(&self) -> Option<&[DeviceUnderTest]>
pub fn devices(&self) -> Option<&[DeviceUnderTest]>
Gets the devices configured.
sourcepub fn intended_for_qualification(&self) -> bool
pub fn intended_for_qualification(&self) -> bool
Gets the tests intended for qualification in a suite.
sourcepub fn is_long_duration_test(&self) -> bool
pub fn is_long_duration_test(&self) -> bool
Verifies if the test suite is a long duration test.
sourcepub fn root_group(&self) -> Option<&str>
pub fn root_group(&self) -> Option<&str>
Gets the test suite root group. This is a required parameter.
sourcepub fn device_permission_role_arn(&self) -> Option<&str>
pub fn device_permission_role_arn(&self) -> Option<&str>
Gets the device permission ARN. This is a required parameter.
source§impl SuiteDefinitionConfiguration
impl SuiteDefinitionConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SuiteDefinitionConfiguration
.
Trait Implementations§
source§impl Clone for SuiteDefinitionConfiguration
impl Clone for SuiteDefinitionConfiguration
source§fn clone(&self) -> SuiteDefinitionConfiguration
fn clone(&self) -> SuiteDefinitionConfiguration
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 Debug for SuiteDefinitionConfiguration
impl Debug for SuiteDefinitionConfiguration
source§impl PartialEq<SuiteDefinitionConfiguration> for SuiteDefinitionConfiguration
impl PartialEq<SuiteDefinitionConfiguration> for SuiteDefinitionConfiguration
source§fn eq(&self, other: &SuiteDefinitionConfiguration) -> bool
fn eq(&self, other: &SuiteDefinitionConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.