Struct aws_sdk_codepipeline::operation::list_rule_executions::builders::ListRuleExecutionsOutputBuilder
source · #[non_exhaustive]pub struct ListRuleExecutionsOutputBuilder { /* private fields */ }
Expand description
A builder for ListRuleExecutionsOutput
.
Implementations§
source§impl ListRuleExecutionsOutputBuilder
impl ListRuleExecutionsOutputBuilder
sourcepub fn rule_execution_details(self, input: RuleExecutionDetail) -> Self
pub fn rule_execution_details(self, input: RuleExecutionDetail) -> Self
Appends an item to rule_execution_details
.
To override the contents of this collection use set_rule_execution_details
.
Details about the output for listing rule executions.
sourcepub fn set_rule_execution_details(
self,
input: Option<Vec<RuleExecutionDetail>>,
) -> Self
pub fn set_rule_execution_details( self, input: Option<Vec<RuleExecutionDetail>>, ) -> Self
Details about the output for listing rule executions.
sourcepub fn get_rule_execution_details(&self) -> &Option<Vec<RuleExecutionDetail>>
pub fn get_rule_execution_details(&self) -> &Option<Vec<RuleExecutionDetail>>
Details about the output for listing rule executions.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A token that can be used in the next ListRuleExecutions
call. To view all items in the list, continue to call this operation with each subsequent token until no more nextToken values are returned.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A token that can be used in the next ListRuleExecutions
call. To view all items in the list, continue to call this operation with each subsequent token until no more nextToken values are returned.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A token that can be used in the next ListRuleExecutions
call. To view all items in the list, continue to call this operation with each subsequent token until no more nextToken values are returned.
sourcepub fn build(self) -> ListRuleExecutionsOutput
pub fn build(self) -> ListRuleExecutionsOutput
Consumes the builder and constructs a ListRuleExecutionsOutput
.
Trait Implementations§
source§impl Clone for ListRuleExecutionsOutputBuilder
impl Clone for ListRuleExecutionsOutputBuilder
source§fn clone(&self) -> ListRuleExecutionsOutputBuilder
fn clone(&self) -> ListRuleExecutionsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListRuleExecutionsOutputBuilder
impl Default for ListRuleExecutionsOutputBuilder
source§fn default() -> ListRuleExecutionsOutputBuilder
fn default() -> ListRuleExecutionsOutputBuilder
source§impl PartialEq for ListRuleExecutionsOutputBuilder
impl PartialEq for ListRuleExecutionsOutputBuilder
source§fn eq(&self, other: &ListRuleExecutionsOutputBuilder) -> bool
fn eq(&self, other: &ListRuleExecutionsOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListRuleExecutionsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListRuleExecutionsOutputBuilder
impl RefUnwindSafe for ListRuleExecutionsOutputBuilder
impl Send for ListRuleExecutionsOutputBuilder
impl Sync for ListRuleExecutionsOutputBuilder
impl Unpin for ListRuleExecutionsOutputBuilder
impl UnwindSafe for ListRuleExecutionsOutputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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