pub struct Builder { /* private fields */ }
Expand description
A builder for TestAvailabilityConfigurationOutput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn test_passed(self, input: bool) -> Self
pub fn test_passed(self, input: bool) -> Self
Boolean indicating whether the test passed or failed.
sourcepub fn set_test_passed(self, input: Option<bool>) -> Self
pub fn set_test_passed(self, input: Option<bool>) -> Self
Boolean indicating whether the test passed or failed.
sourcepub fn failure_reason(self, input: impl Into<String>) -> Self
pub fn failure_reason(self, input: impl Into<String>) -> Self
String containing the reason for a failed test if TestPassed
is false.
sourcepub fn set_failure_reason(self, input: Option<String>) -> Self
pub fn set_failure_reason(self, input: Option<String>) -> Self
String containing the reason for a failed test if TestPassed
is false.
sourcepub fn build(self) -> TestAvailabilityConfigurationOutput
pub fn build(self) -> TestAvailabilityConfigurationOutput
Consumes the builder and constructs a TestAvailabilityConfigurationOutput
.