pub struct LambdaFunctionFailedEventAttributes {
pub details: Option<String>,
pub reason: Option<String>,
pub scheduled_event_id: i64,
pub started_event_id: i64,
}
Expand description
Provides the details of the LambdaFunctionFailed
event. It isn't set for other event types.
Fields§
§details: Option<String>
The details of the failure.
reason: Option<String>
The reason provided for the failure.
scheduled_event_id: 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.
started_event_id: 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.
Trait Implementations§
Source§impl Clone for LambdaFunctionFailedEventAttributes
impl Clone for LambdaFunctionFailedEventAttributes
Source§fn clone(&self) -> LambdaFunctionFailedEventAttributes
fn clone(&self) -> LambdaFunctionFailedEventAttributes
Returns a duplicate 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 LambdaFunctionFailedEventAttributes
impl Default for LambdaFunctionFailedEventAttributes
Source§fn default() -> LambdaFunctionFailedEventAttributes
fn default() -> LambdaFunctionFailedEventAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LambdaFunctionFailedEventAttributes
impl<'de> Deserialize<'de> for LambdaFunctionFailedEventAttributes
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LambdaFunctionFailedEventAttributes
impl PartialEq for LambdaFunctionFailedEventAttributes
Source§fn eq(&self, other: &LambdaFunctionFailedEventAttributes) -> bool
fn eq(&self, other: &LambdaFunctionFailedEventAttributes) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for LambdaFunctionFailedEventAttributes
Auto Trait Implementations§
impl Freeze for LambdaFunctionFailedEventAttributes
impl RefUnwindSafe for LambdaFunctionFailedEventAttributes
impl Send for LambdaFunctionFailedEventAttributes
impl Sync for LambdaFunctionFailedEventAttributes
impl Unpin for LambdaFunctionFailedEventAttributes
impl UnwindSafe for LambdaFunctionFailedEventAttributes
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