Struct rusoto_swf::WorkflowExecutionTerminatedEventAttributes[][src]

pub struct WorkflowExecutionTerminatedEventAttributes {
    pub cause: Option<String>,
    pub child_policy: String,
    pub details: Option<String>,
    pub reason: Option<String>,
}

Provides the details of the WorkflowExecutionTerminated event.

Fields

If set, indicates that the workflow execution was automatically terminated, and specifies the cause. This happens if the parent workflow execution times out or is terminated and the child policy is set to terminate child executions.

The policy used for the child workflow executions of this workflow execution.

The supported child policies are:

  • TERMINATE – The child executions are terminated.

  • REQUEST_CANCEL – A request to cancel is attempted for each child execution by recording a WorkflowExecutionCancelRequested event in its history. It is up to the decider to take appropriate actions when it receives an execution history with this event.

  • ABANDON – No action is taken. The child executions continue to run.

The details provided for the termination.

The reason provided for the termination.

Trait Implementations

impl Default for WorkflowExecutionTerminatedEventAttributes
[src]

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

impl Debug for WorkflowExecutionTerminatedEventAttributes
[src]

Formats the value using the given formatter. Read more

impl Clone for WorkflowExecutionTerminatedEventAttributes
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for WorkflowExecutionTerminatedEventAttributes
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations