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