Struct rusoto_swf::ChildWorkflowExecutionCanceledEventAttributes [] [src]

pub struct ChildWorkflowExecutionCanceledEventAttributes {
    pub details: Option<String>,
    pub initiated_event_id: i64,
    pub started_event_id: i64,
    pub workflow_execution: WorkflowExecution,
    pub workflow_type: WorkflowType,
}

Provide details of the ChildWorkflowExecutionCanceled event.

Fields

Details of the cancellation (if provided).

The ID of the StartChildWorkflowExecutionInitiated event corresponding to the StartChildWorkflowExecution decision to start this child workflow execution. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

The ID of the ChildWorkflowExecutionStarted event recorded when this child workflow execution was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.

The child workflow execution that was canceled.

The type of the child workflow execution.

Trait Implementations

impl Default for ChildWorkflowExecutionCanceledEventAttributes
[src]

Returns the "default value" for a type. Read more

impl Debug for ChildWorkflowExecutionCanceledEventAttributes
[src]

Formats the value using the given formatter.

impl Clone for ChildWorkflowExecutionCanceledEventAttributes
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more