pub struct LambdaFunctionCompletedEventAttributes {
pub result: Option<String>,
pub scheduled_event_id: i64,
pub started_event_id: i64,
}
Expand description
Provides the details of the LambdaFunctionCompleted
event. It isn't set for other event types.
Fields§
§result: Option<String>
The results of the Lambda task.
scheduled_event_id: i64
The ID of the LambdaFunctionScheduled
event that was recorded when this Lambda 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 LambdaFunctionCompletedEventAttributes
impl Clone for LambdaFunctionCompletedEventAttributes
Source§fn clone(&self) -> LambdaFunctionCompletedEventAttributes
fn clone(&self) -> LambdaFunctionCompletedEventAttributes
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 LambdaFunctionCompletedEventAttributes
impl Default for LambdaFunctionCompletedEventAttributes
Source§fn default() -> LambdaFunctionCompletedEventAttributes
fn default() -> LambdaFunctionCompletedEventAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LambdaFunctionCompletedEventAttributes
impl<'de> Deserialize<'de> for LambdaFunctionCompletedEventAttributes
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 LambdaFunctionCompletedEventAttributes
impl PartialEq for LambdaFunctionCompletedEventAttributes
Source§fn eq(&self, other: &LambdaFunctionCompletedEventAttributes) -> bool
fn eq(&self, other: &LambdaFunctionCompletedEventAttributes) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for LambdaFunctionCompletedEventAttributes
Auto Trait Implementations§
impl Freeze for LambdaFunctionCompletedEventAttributes
impl RefUnwindSafe for LambdaFunctionCompletedEventAttributes
impl Send for LambdaFunctionCompletedEventAttributes
impl Sync for LambdaFunctionCompletedEventAttributes
impl Unpin for LambdaFunctionCompletedEventAttributes
impl UnwindSafe for LambdaFunctionCompletedEventAttributes
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