Interface WorkflowExecutionTimedOutEventAttributes.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<WorkflowExecutionTimedOutEventAttributes.Builder,WorkflowExecutionTimedOutEventAttributes>
,SdkBuilder<WorkflowExecutionTimedOutEventAttributes.Builder,WorkflowExecutionTimedOutEventAttributes>
,SdkPojo
- Enclosing class:
- WorkflowExecutionTimedOutEventAttributes
public static interface WorkflowExecutionTimedOutEventAttributes.Builder extends SdkPojo, CopyableBuilder<WorkflowExecutionTimedOutEventAttributes.Builder,WorkflowExecutionTimedOutEventAttributes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WorkflowExecutionTimedOutEventAttributes.Builder
childPolicy(String childPolicy)
The policy used for the child workflow executions of this workflow execution.WorkflowExecutionTimedOutEventAttributes.Builder
childPolicy(ChildPolicy childPolicy)
The policy used for the child workflow executions of this workflow execution.WorkflowExecutionTimedOutEventAttributes.Builder
timeoutType(String timeoutType)
The type of timeout that caused this event.WorkflowExecutionTimedOutEventAttributes.Builder
timeoutType(WorkflowExecutionTimeoutType timeoutType)
The type of timeout that caused this event.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
timeoutType
WorkflowExecutionTimedOutEventAttributes.Builder timeoutType(String timeoutType)
The type of timeout that caused this event.
- Parameters:
timeoutType
- The type of timeout that caused this event.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
WorkflowExecutionTimeoutType
,WorkflowExecutionTimeoutType
-
timeoutType
WorkflowExecutionTimedOutEventAttributes.Builder timeoutType(WorkflowExecutionTimeoutType timeoutType)
The type of timeout that caused this event.
- Parameters:
timeoutType
- The type of timeout that caused this event.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
WorkflowExecutionTimeoutType
,WorkflowExecutionTimeoutType
-
childPolicy
WorkflowExecutionTimedOutEventAttributes.Builder childPolicy(String 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.
- Parameters:
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.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ChildPolicy
,ChildPolicy
-
-
childPolicy
WorkflowExecutionTimedOutEventAttributes.Builder childPolicy(ChildPolicy 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.
- Parameters:
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.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ChildPolicy
,ChildPolicy
-
-
-