Struct aws_sdk_swf::model::RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
source · [−]#[non_exhaustive]pub struct RequestCancelExternalWorkflowExecutionInitiatedEventAttributes { /* private fields */ }
Expand description
Provides the details of the RequestCancelExternalWorkflowExecutionInitiated
event.
Implementations
sourceimpl RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
impl RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
sourcepub fn workflow_id(&self) -> Option<&str>
pub fn workflow_id(&self) -> Option<&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.
sourceimpl RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
impl RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
.
Trait Implementations
sourceimpl Clone for RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
impl Clone for RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
sourcefn clone(
&self
) -> RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
fn clone(
&self
) -> RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
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<RequestCancelExternalWorkflowExecutionInitiatedEventAttributes> for RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
impl PartialEq<RequestCancelExternalWorkflowExecutionInitiatedEventAttributes> for RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
sourcefn eq(
&self,
other: &RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
) -> bool
fn eq(
&self,
other: &RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
) -> bool
impl StructuralPartialEq for RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
Auto Trait Implementations
impl RefUnwindSafe for RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
impl Send for RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
impl Sync for RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
impl Unpin for RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
impl UnwindSafe for RequestCancelExternalWorkflowExecutionInitiatedEventAttributes
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