#[non_exhaustive]pub struct RequestCancelExternalWorkflowExecutionInitiatedEventAttributes {
pub workflow_id: String,
pub run_id: Option<String>,
pub decision_task_completed_event_id: i64,
pub control: Option<String>,
}
Expand description
Provides the details of the RequestCancelExternalWorkflowExecutionInitiated
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.workflow_id: String
The workflowId
of the external workflow execution to be canceled.
run_id: Option<String>
The runId
of the external workflow execution to be canceled.
decision_task_completed_event_id: i64
The ID of the DecisionTaskCompleted
event corresponding to the decision task that resulted in the RequestCancelExternalWorkflowExecution
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.
control: Option<String>
Data attached to the event that can be used by the decider in subsequent workflow tasks.
Implementations§
source§impl RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
impl RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
sourcepub fn workflow_id(&self) -> &str
pub fn workflow_id(&self) -> &str
The workflowId
of the external workflow execution to be canceled.
sourcepub fn run_id(&self) -> Option<&str>
pub fn run_id(&self) -> Option<&str>
The runId
of the external workflow execution to be canceled.
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 RequestCancelExternalWorkflowExecution
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.
source§impl RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
impl RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
sourcepub fn builder(
) -> RequestCancelExternalWorkflowExecutionInitiatedEventAttributesBuilder
pub fn builder( ) -> RequestCancelExternalWorkflowExecutionInitiatedEventAttributesBuilder
Creates a new builder-style object to manufacture RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
.
Trait Implementations§
source§impl Clone for RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
impl Clone for RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
source§fn clone(
&self
) -> RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
fn clone( &self ) -> RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
impl PartialEq for RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
source§fn eq(
&self,
other: &RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
) -> bool
fn eq( &self, other: &RequestCancelExternalWorkflowExecutionInitiatedEventAttributes ) -> bool
self
and other
values to be equal, and is used
by ==
.