#[non_exhaustive]pub struct ActivityTaskCancelRequestedEventAttributes {
pub decision_task_completed_event_id: i64,
pub activity_id: String,
}
Expand description
Provides the details of the ActivityTaskCancelRequested
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.decision_task_completed_event_id: i64
The ID of the DecisionTaskCompleted
event corresponding to the decision task that resulted in the RequestCancelActivityTask
decision for this cancellation request. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
activity_id: String
The unique ID of the task.
Implementations§
source§impl ActivityTaskCancelRequestedEventAttributes
impl ActivityTaskCancelRequestedEventAttributes
sourcepub fn decision_task_completed_event_id(&self) -> i64
pub fn decision_task_completed_event_id(&self) -> i64
The ID of the DecisionTaskCompleted
event corresponding to the decision task that resulted in the RequestCancelActivityTask
decision for this cancellation request. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
sourcepub fn activity_id(&self) -> &str
pub fn activity_id(&self) -> &str
The unique ID of the task.
source§impl ActivityTaskCancelRequestedEventAttributes
impl ActivityTaskCancelRequestedEventAttributes
sourcepub fn builder() -> ActivityTaskCancelRequestedEventAttributesBuilder
pub fn builder() -> ActivityTaskCancelRequestedEventAttributesBuilder
Creates a new builder-style object to manufacture ActivityTaskCancelRequestedEventAttributes
.
Trait Implementations§
source§impl Clone for ActivityTaskCancelRequestedEventAttributes
impl Clone for ActivityTaskCancelRequestedEventAttributes
source§fn clone(&self) -> ActivityTaskCancelRequestedEventAttributes
fn clone(&self) -> ActivityTaskCancelRequestedEventAttributes
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for ActivityTaskCancelRequestedEventAttributes
impl PartialEq for ActivityTaskCancelRequestedEventAttributes
source§fn eq(&self, other: &ActivityTaskCancelRequestedEventAttributes) -> bool
fn eq(&self, other: &ActivityTaskCancelRequestedEventAttributes) -> bool
self
and other
values to be equal, and is used
by ==
.