Struct aws_sdk_swf::types::TimerCanceledEventAttributes
source · #[non_exhaustive]pub struct TimerCanceledEventAttributes { /* private fields */ }
Expand description
Provides the details of the TimerCanceled
event.
Implementations§
source§impl TimerCanceledEventAttributes
impl TimerCanceledEventAttributes
sourcepub fn started_event_id(&self) -> i64
pub fn started_event_id(&self) -> i64
The ID of the TimerStarted
event that was recorded when this timer was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
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 CancelTimer
decision to cancel this timer. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
source§impl TimerCanceledEventAttributes
impl TimerCanceledEventAttributes
sourcepub fn builder() -> TimerCanceledEventAttributesBuilder
pub fn builder() -> TimerCanceledEventAttributesBuilder
Creates a new builder-style object to manufacture TimerCanceledEventAttributes
.
Trait Implementations§
source§impl Clone for TimerCanceledEventAttributes
impl Clone for TimerCanceledEventAttributes
source§fn clone(&self) -> TimerCanceledEventAttributes
fn clone(&self) -> TimerCanceledEventAttributes
Returns a copy 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 Debug for TimerCanceledEventAttributes
impl Debug for TimerCanceledEventAttributes
source§impl PartialEq<TimerCanceledEventAttributes> for TimerCanceledEventAttributes
impl PartialEq<TimerCanceledEventAttributes> for TimerCanceledEventAttributes
source§fn eq(&self, other: &TimerCanceledEventAttributes) -> bool
fn eq(&self, other: &TimerCanceledEventAttributes) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TimerCanceledEventAttributes
Auto Trait Implementations§
impl RefUnwindSafe for TimerCanceledEventAttributes
impl Send for TimerCanceledEventAttributes
impl Sync for TimerCanceledEventAttributes
impl Unpin for TimerCanceledEventAttributes
impl UnwindSafe for TimerCanceledEventAttributes
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