#[non_exhaustive]pub struct ActivityTaskCanceledEventAttributes { /* private fields */ }
Expand description
Provides the details of the ActivityTaskCanceled
event.
Implementations
sourceimpl ActivityTaskCanceledEventAttributes
impl ActivityTaskCanceledEventAttributes
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.
sourcepub fn latest_cancel_requested_event_id(&self) -> i64
pub fn latest_cancel_requested_event_id(&self) -> i64
If set, contains the ID of the last ActivityTaskCancelRequested
event recorded for this activity task. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
sourceimpl ActivityTaskCanceledEventAttributes
impl ActivityTaskCanceledEventAttributes
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ActivityTaskCanceledEventAttributes
.
Trait Implementations
sourceimpl Clone for ActivityTaskCanceledEventAttributes
impl Clone for ActivityTaskCanceledEventAttributes
sourcefn clone(&self) -> ActivityTaskCanceledEventAttributes
fn clone(&self) -> ActivityTaskCanceledEventAttributes
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more