#[non_exhaustive]pub struct ActivityTaskFailedEventAttributes {
pub reason: Option<String>,
pub details: Option<String>,
pub scheduled_event_id: i64,
pub started_event_id: i64,
}
Expand description
Provides the details of the ActivityTaskFailed
event.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.reason: Option<String>
The reason provided for the failure.
details: Option<String>
The details of the failure.
scheduled_event_id: i64
The ID of the ActivityTaskScheduled
event that was recorded when this activity task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
started_event_id: i64
The ID of the ActivityTaskStarted
event recorded when this activity task was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
Implementations§
source§impl ActivityTaskFailedEventAttributes
impl ActivityTaskFailedEventAttributes
sourcepub fn scheduled_event_id(&self) -> i64
pub fn scheduled_event_id(&self) -> i64
The ID of the ActivityTaskScheduled
event that was recorded when this activity task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
sourcepub fn started_event_id(&self) -> i64
pub fn started_event_id(&self) -> i64
The ID of the ActivityTaskStarted
event recorded when this activity task was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
source§impl ActivityTaskFailedEventAttributes
impl ActivityTaskFailedEventAttributes
sourcepub fn builder() -> ActivityTaskFailedEventAttributesBuilder
pub fn builder() -> ActivityTaskFailedEventAttributesBuilder
Creates a new builder-style object to manufacture ActivityTaskFailedEventAttributes
.
Trait Implementations§
source§impl Clone for ActivityTaskFailedEventAttributes
impl Clone for ActivityTaskFailedEventAttributes
source§fn clone(&self) -> ActivityTaskFailedEventAttributes
fn clone(&self) -> ActivityTaskFailedEventAttributes
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for ActivityTaskFailedEventAttributes
impl PartialEq for ActivityTaskFailedEventAttributes
source§fn eq(&self, other: &ActivityTaskFailedEventAttributes) -> bool
fn eq(&self, other: &ActivityTaskFailedEventAttributes) -> bool
self
and other
values to be equal, and is used
by ==
.