#[non_exhaustive]pub struct ExternalWorkflowExecutionCancelRequestedEventAttributes { /* private fields */ }
Expand description
Provides the details of the ExternalWorkflowExecutionCancelRequested
event.
Implementations
sourceimpl ExternalWorkflowExecutionCancelRequestedEventAttributes
impl ExternalWorkflowExecutionCancelRequestedEventAttributes
sourcepub fn workflow_execution(&self) -> Option<&WorkflowExecution>
pub fn workflow_execution(&self) -> Option<&WorkflowExecution>
The external workflow execution to which the cancellation request was delivered.
sourcepub fn initiated_event_id(&self) -> i64
pub fn initiated_event_id(&self) -> i64
The ID of the RequestCancelExternalWorkflowExecutionInitiated
event corresponding to the RequestCancelExternalWorkflowExecution
decision to cancel this external workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
sourceimpl ExternalWorkflowExecutionCancelRequestedEventAttributes
impl ExternalWorkflowExecutionCancelRequestedEventAttributes
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ExternalWorkflowExecutionCancelRequestedEventAttributes
.
Trait Implementations
sourceimpl Clone for ExternalWorkflowExecutionCancelRequestedEventAttributes
impl Clone for ExternalWorkflowExecutionCancelRequestedEventAttributes
sourcefn clone(&self) -> ExternalWorkflowExecutionCancelRequestedEventAttributes
fn clone(&self) -> ExternalWorkflowExecutionCancelRequestedEventAttributes
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl PartialEq<ExternalWorkflowExecutionCancelRequestedEventAttributes> for ExternalWorkflowExecutionCancelRequestedEventAttributes
impl PartialEq<ExternalWorkflowExecutionCancelRequestedEventAttributes> for ExternalWorkflowExecutionCancelRequestedEventAttributes
sourcefn eq(
&self,
other: &ExternalWorkflowExecutionCancelRequestedEventAttributes
) -> bool
fn eq(
&self,
other: &ExternalWorkflowExecutionCancelRequestedEventAttributes
) -> bool
impl StructuralPartialEq for ExternalWorkflowExecutionCancelRequestedEventAttributes
Auto Trait Implementations
impl RefUnwindSafe for ExternalWorkflowExecutionCancelRequestedEventAttributes
impl Send for ExternalWorkflowExecutionCancelRequestedEventAttributes
impl Sync for ExternalWorkflowExecutionCancelRequestedEventAttributes
impl Unpin for ExternalWorkflowExecutionCancelRequestedEventAttributes
impl UnwindSafe for ExternalWorkflowExecutionCancelRequestedEventAttributes
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more