Struct rusoto_swf::ChildWorkflowExecutionCompletedEventAttributes [] [src]

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

Provides details of the ChildWorkflowExecutionCompleted event.

Fields

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 result of the child workflow execution (if any).

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 completed.

The type of the child workflow execution.

Trait Implementations

impl Default for ChildWorkflowExecutionCompletedEventAttributes
[src]

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

impl Debug for ChildWorkflowExecutionCompletedEventAttributes
[src]

Formats the value using the given formatter.

impl Clone for ChildWorkflowExecutionCompletedEventAttributes
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more