pub struct WorkflowExecutionTimedOutEventAttributes {
pub child_policy: String,
pub timeout_type: String,
}
Expand description
Provides the details of the WorkflowExecutionTimedOut
event.
Fields§
§child_policy: String
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.
timeout_type: String
The type of timeout that caused this event.
Trait Implementations§
Source§impl Clone for WorkflowExecutionTimedOutEventAttributes
impl Clone for WorkflowExecutionTimedOutEventAttributes
Source§fn clone(&self) -> WorkflowExecutionTimedOutEventAttributes
fn clone(&self) -> WorkflowExecutionTimedOutEventAttributes
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for WorkflowExecutionTimedOutEventAttributes
impl Default for WorkflowExecutionTimedOutEventAttributes
Source§fn default() -> WorkflowExecutionTimedOutEventAttributes
fn default() -> WorkflowExecutionTimedOutEventAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkflowExecutionTimedOutEventAttributes
impl<'de> Deserialize<'de> for WorkflowExecutionTimedOutEventAttributes
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for WorkflowExecutionTimedOutEventAttributes
impl PartialEq for WorkflowExecutionTimedOutEventAttributes
Source§fn eq(&self, other: &WorkflowExecutionTimedOutEventAttributes) -> bool
fn eq(&self, other: &WorkflowExecutionTimedOutEventAttributes) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for WorkflowExecutionTimedOutEventAttributes
Auto Trait Implementations§
impl Freeze for WorkflowExecutionTimedOutEventAttributes
impl RefUnwindSafe for WorkflowExecutionTimedOutEventAttributes
impl Send for WorkflowExecutionTimedOutEventAttributes
impl Sync for WorkflowExecutionTimedOutEventAttributes
impl Unpin for WorkflowExecutionTimedOutEventAttributes
impl UnwindSafe for WorkflowExecutionTimedOutEventAttributes
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more