pub struct LambdaFunctionTimedOutEventAttributes {
pub scheduled_event_id: i64,
pub started_event_id: i64,
pub timeout_type: Option<String>,
}
Expand description
Provides details of the LambdaFunctionTimedOut
event.
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.
started_event_id: i64
The ID of the ActivityTaskStarted
event that was 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.
timeout_type: Option<String>
The type of the timeout that caused this event.
Trait Implementations§
Source§impl Clone for LambdaFunctionTimedOutEventAttributes
impl Clone for LambdaFunctionTimedOutEventAttributes
Source§fn clone(&self) -> LambdaFunctionTimedOutEventAttributes
fn clone(&self) -> LambdaFunctionTimedOutEventAttributes
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 LambdaFunctionTimedOutEventAttributes
impl Default for LambdaFunctionTimedOutEventAttributes
Source§fn default() -> LambdaFunctionTimedOutEventAttributes
fn default() -> LambdaFunctionTimedOutEventAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LambdaFunctionTimedOutEventAttributes
impl<'de> Deserialize<'de> for LambdaFunctionTimedOutEventAttributes
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 LambdaFunctionTimedOutEventAttributes
impl PartialEq for LambdaFunctionTimedOutEventAttributes
Source§fn eq(&self, other: &LambdaFunctionTimedOutEventAttributes) -> bool
fn eq(&self, other: &LambdaFunctionTimedOutEventAttributes) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for LambdaFunctionTimedOutEventAttributes
Auto Trait Implementations§
impl Freeze for LambdaFunctionTimedOutEventAttributes
impl RefUnwindSafe for LambdaFunctionTimedOutEventAttributes
impl Send for LambdaFunctionTimedOutEventAttributes
impl Sync for LambdaFunctionTimedOutEventAttributes
impl Unpin for LambdaFunctionTimedOutEventAttributes
impl UnwindSafe for LambdaFunctionTimedOutEventAttributes
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