Struct aws_sdk_swf::model::WorkflowExecutionTimedOutEventAttributes [−][src]
#[non_exhaustive]pub struct WorkflowExecutionTimedOutEventAttributes {
pub timeout_type: Option<WorkflowExecutionTimeoutType>,
pub child_policy: Option<ChildPolicy>,
}
Expand description
Provides the details of the WorkflowExecutionTimedOut
event.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.timeout_type: Option<WorkflowExecutionTimeoutType>
The type of timeout that caused this event.
child_policy: Option<ChildPolicy>
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 aWorkflowExecutionCancelRequested
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.
Implementations
The type of timeout that caused this event.
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 aWorkflowExecutionCancelRequested
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.
Creates a new builder-style object to manufacture WorkflowExecutionTimedOutEventAttributes
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more