Struct rusoto_swf::ChildWorkflowExecutionFailedEventAttributes [] [src]

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

Provides details of the ChildWorkflowExecutionFailed event.

Fields

The details of the failure (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 reason for the failure (if provided).

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

The type of the child workflow execution.

Trait Implementations

impl Default for ChildWorkflowExecutionFailedEventAttributes
[src]

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

impl Debug for ChildWorkflowExecutionFailedEventAttributes
[src]

Formats the value using the given formatter.

impl Clone for ChildWorkflowExecutionFailedEventAttributes
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more