Struct aws_sdk_codecommit::operation::test_repository_triggers::builders::TestRepositoryTriggersOutputBuilder
source · #[non_exhaustive]pub struct TestRepositoryTriggersOutputBuilder { /* private fields */ }Expand description
A builder for TestRepositoryTriggersOutput.
Implementations§
source§impl TestRepositoryTriggersOutputBuilder
impl TestRepositoryTriggersOutputBuilder
sourcepub fn successful_executions(self, input: impl Into<String>) -> Self
pub fn successful_executions(self, input: impl Into<String>) -> Self
Appends an item to successful_executions.
To override the contents of this collection use set_successful_executions.
The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.
sourcepub fn set_successful_executions(self, input: Option<Vec<String>>) -> Self
pub fn set_successful_executions(self, input: Option<Vec<String>>) -> Self
The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.
sourcepub fn get_successful_executions(&self) -> &Option<Vec<String>>
pub fn get_successful_executions(&self) -> &Option<Vec<String>>
The list of triggers that were successfully tested. This list provides the names of the triggers that were successfully tested, separated by commas.
sourcepub fn failed_executions(self, input: RepositoryTriggerExecutionFailure) -> Self
pub fn failed_executions(self, input: RepositoryTriggerExecutionFailure) -> Self
Appends an item to failed_executions.
To override the contents of this collection use set_failed_executions.
The list of triggers that were not tested. This list provides the names of the triggers that could not be tested, separated by commas.
sourcepub fn set_failed_executions(
self,
input: Option<Vec<RepositoryTriggerExecutionFailure>>
) -> Self
pub fn set_failed_executions( self, input: Option<Vec<RepositoryTriggerExecutionFailure>> ) -> Self
The list of triggers that were not tested. This list provides the names of the triggers that could not be tested, separated by commas.
sourcepub fn get_failed_executions(
&self
) -> &Option<Vec<RepositoryTriggerExecutionFailure>>
pub fn get_failed_executions( &self ) -> &Option<Vec<RepositoryTriggerExecutionFailure>>
The list of triggers that were not tested. This list provides the names of the triggers that could not be tested, separated by commas.
sourcepub fn build(self) -> TestRepositoryTriggersOutput
pub fn build(self) -> TestRepositoryTriggersOutput
Consumes the builder and constructs a TestRepositoryTriggersOutput.
Trait Implementations§
source§impl Clone for TestRepositoryTriggersOutputBuilder
impl Clone for TestRepositoryTriggersOutputBuilder
source§fn clone(&self) -> TestRepositoryTriggersOutputBuilder
fn clone(&self) -> TestRepositoryTriggersOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for TestRepositoryTriggersOutputBuilder
impl Default for TestRepositoryTriggersOutputBuilder
source§fn default() -> TestRepositoryTriggersOutputBuilder
fn default() -> TestRepositoryTriggersOutputBuilder
source§impl PartialEq for TestRepositoryTriggersOutputBuilder
impl PartialEq for TestRepositoryTriggersOutputBuilder
source§fn eq(&self, other: &TestRepositoryTriggersOutputBuilder) -> bool
fn eq(&self, other: &TestRepositoryTriggersOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for TestRepositoryTriggersOutputBuilder
Auto Trait Implementations§
impl Freeze for TestRepositoryTriggersOutputBuilder
impl RefUnwindSafe for TestRepositoryTriggersOutputBuilder
impl Send for TestRepositoryTriggersOutputBuilder
impl Sync for TestRepositoryTriggersOutputBuilder
impl Unpin for TestRepositoryTriggersOutputBuilder
impl UnwindSafe for TestRepositoryTriggersOutputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more