#[non_exhaustive]pub struct LambdaFunctionFailedEventAttributesBuilder { /* private fields */ }
Expand description
A builder for LambdaFunctionFailedEventAttributes
.
Implementations§
source§impl LambdaFunctionFailedEventAttributesBuilder
impl LambdaFunctionFailedEventAttributesBuilder
sourcepub fn scheduled_event_id(self, input: i64) -> Self
pub fn scheduled_event_id(self, input: i64) -> Self
The ID of the LambdaFunctionScheduled
event that was recorded when this activity task was scheduled. To help diagnose issues, use this information to trace back the chain of events leading up to this event.
sourcepub fn set_scheduled_event_id(self, input: Option<i64>) -> Self
pub fn set_scheduled_event_id(self, input: Option<i64>) -> Self
The ID of the LambdaFunctionScheduled
event that was recorded when this activity task was scheduled. To help diagnose issues, use this information to trace back the chain of events leading up to this event.
sourcepub fn get_scheduled_event_id(&self) -> &Option<i64>
pub fn get_scheduled_event_id(&self) -> &Option<i64>
The ID of the LambdaFunctionScheduled
event that was recorded when this activity task was scheduled. To help diagnose issues, use this information to trace back the chain of events leading up to this event.
sourcepub fn started_event_id(self, input: i64) -> Self
pub fn started_event_id(self, input: i64) -> Self
The ID of the LambdaFunctionStarted
event recorded when this activity task started. To help diagnose issues, use this information to trace back the chain of events leading up to this event.
sourcepub fn set_started_event_id(self, input: Option<i64>) -> Self
pub fn set_started_event_id(self, input: Option<i64>) -> Self
The ID of the LambdaFunctionStarted
event recorded when this activity task started. To help diagnose issues, use this information to trace back the chain of events leading up to this event.
sourcepub fn get_started_event_id(&self) -> &Option<i64>
pub fn get_started_event_id(&self) -> &Option<i64>
The ID of the LambdaFunctionStarted
event recorded when this activity task started. To help diagnose issues, use this information to trace back the chain of events leading up to this event.
sourcepub fn set_reason(self, input: Option<String>) -> Self
pub fn set_reason(self, input: Option<String>) -> Self
The reason provided for the failure.
sourcepub fn get_reason(&self) -> &Option<String>
pub fn get_reason(&self) -> &Option<String>
The reason provided for the failure.
sourcepub fn set_details(self, input: Option<String>) -> Self
pub fn set_details(self, input: Option<String>) -> Self
The details of the failure.
sourcepub fn get_details(&self) -> &Option<String>
pub fn get_details(&self) -> &Option<String>
The details of the failure.
sourcepub fn build(self) -> LambdaFunctionFailedEventAttributes
pub fn build(self) -> LambdaFunctionFailedEventAttributes
Consumes the builder and constructs a LambdaFunctionFailedEventAttributes
.
Trait Implementations§
source§impl Clone for LambdaFunctionFailedEventAttributesBuilder
impl Clone for LambdaFunctionFailedEventAttributesBuilder
source§fn clone(&self) -> LambdaFunctionFailedEventAttributesBuilder
fn clone(&self) -> LambdaFunctionFailedEventAttributesBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for LambdaFunctionFailedEventAttributesBuilder
impl Default for LambdaFunctionFailedEventAttributesBuilder
source§fn default() -> LambdaFunctionFailedEventAttributesBuilder
fn default() -> LambdaFunctionFailedEventAttributesBuilder
source§impl PartialEq for LambdaFunctionFailedEventAttributesBuilder
impl PartialEq for LambdaFunctionFailedEventAttributesBuilder
source§fn eq(&self, other: &LambdaFunctionFailedEventAttributesBuilder) -> bool
fn eq(&self, other: &LambdaFunctionFailedEventAttributesBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for LambdaFunctionFailedEventAttributesBuilder
Auto Trait Implementations§
impl Freeze for LambdaFunctionFailedEventAttributesBuilder
impl RefUnwindSafe for LambdaFunctionFailedEventAttributesBuilder
impl Send for LambdaFunctionFailedEventAttributesBuilder
impl Sync for LambdaFunctionFailedEventAttributesBuilder
impl Unpin for LambdaFunctionFailedEventAttributesBuilder
impl UnwindSafe for LambdaFunctionFailedEventAttributesBuilder
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