#[non_exhaustive]pub struct ActivityTaskCanceledEventAttributes {
pub details: Option<String>,
pub scheduled_event_id: i64,
pub started_event_id: i64,
pub latest_cancel_requested_event_id: i64,
}
Expand description
Provides the details of the ActivityTaskCanceled
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.details: Option<String>
Details of the cancellation.
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.
latest_cancel_requested_event_id: 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.
Implementations§
source§impl 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.
source§impl ActivityTaskCanceledEventAttributes
impl ActivityTaskCanceledEventAttributes
sourcepub fn builder() -> ActivityTaskCanceledEventAttributesBuilder
pub fn builder() -> ActivityTaskCanceledEventAttributesBuilder
Creates a new builder-style object to manufacture ActivityTaskCanceledEventAttributes
.
Trait Implementations§
source§impl Clone for ActivityTaskCanceledEventAttributes
impl Clone for ActivityTaskCanceledEventAttributes
source§fn clone(&self) -> ActivityTaskCanceledEventAttributes
fn clone(&self) -> ActivityTaskCanceledEventAttributes
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for ActivityTaskCanceledEventAttributes
impl PartialEq for ActivityTaskCanceledEventAttributes
source§fn eq(&self, other: &ActivityTaskCanceledEventAttributes) -> bool
fn eq(&self, other: &ActivityTaskCanceledEventAttributes) -> bool
self
and other
values to be equal, and is used
by ==
.