#[non_exhaustive]pub struct BatchGetTriggersOutputBuilder { /* private fields */ }Expand description
A builder for BatchGetTriggersOutput.
Implementations§
source§impl BatchGetTriggersOutputBuilder
impl BatchGetTriggersOutputBuilder
sourcepub fn triggers(self, input: Trigger) -> Self
pub fn triggers(self, input: Trigger) -> Self
Appends an item to triggers.
To override the contents of this collection use set_triggers.
A list of trigger definitions.
sourcepub fn set_triggers(self, input: Option<Vec<Trigger>>) -> Self
pub fn set_triggers(self, input: Option<Vec<Trigger>>) -> Self
A list of trigger definitions.
sourcepub fn get_triggers(&self) -> &Option<Vec<Trigger>>
pub fn get_triggers(&self) -> &Option<Vec<Trigger>>
A list of trigger definitions.
sourcepub fn triggers_not_found(self, input: impl Into<String>) -> Self
pub fn triggers_not_found(self, input: impl Into<String>) -> Self
Appends an item to triggers_not_found.
To override the contents of this collection use set_triggers_not_found.
A list of names of triggers not found.
sourcepub fn set_triggers_not_found(self, input: Option<Vec<String>>) -> Self
pub fn set_triggers_not_found(self, input: Option<Vec<String>>) -> Self
A list of names of triggers not found.
sourcepub fn get_triggers_not_found(&self) -> &Option<Vec<String>>
pub fn get_triggers_not_found(&self) -> &Option<Vec<String>>
A list of names of triggers not found.
sourcepub fn build(self) -> BatchGetTriggersOutput
pub fn build(self) -> BatchGetTriggersOutput
Consumes the builder and constructs a BatchGetTriggersOutput.
Trait Implementations§
source§impl Clone for BatchGetTriggersOutputBuilder
impl Clone for BatchGetTriggersOutputBuilder
source§fn clone(&self) -> BatchGetTriggersOutputBuilder
fn clone(&self) -> BatchGetTriggersOutputBuilder
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 Default for BatchGetTriggersOutputBuilder
impl Default for BatchGetTriggersOutputBuilder
source§fn default() -> BatchGetTriggersOutputBuilder
fn default() -> BatchGetTriggersOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for BatchGetTriggersOutputBuilder
impl PartialEq for BatchGetTriggersOutputBuilder
source§fn eq(&self, other: &BatchGetTriggersOutputBuilder) -> bool
fn eq(&self, other: &BatchGetTriggersOutputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchGetTriggersOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchGetTriggersOutputBuilder
impl RefUnwindSafe for BatchGetTriggersOutputBuilder
impl Send for BatchGetTriggersOutputBuilder
impl Sync for BatchGetTriggersOutputBuilder
impl Unpin for BatchGetTriggersOutputBuilder
impl UnwindSafe for BatchGetTriggersOutputBuilder
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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.