Interface WorkflowExecutionOpenCounts.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<WorkflowExecutionOpenCounts.Builder,WorkflowExecutionOpenCounts>
,SdkBuilder<WorkflowExecutionOpenCounts.Builder,WorkflowExecutionOpenCounts>
,SdkPojo
- Enclosing class:
- WorkflowExecutionOpenCounts
public static interface WorkflowExecutionOpenCounts.Builder extends SdkPojo, CopyableBuilder<WorkflowExecutionOpenCounts.Builder,WorkflowExecutionOpenCounts>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WorkflowExecutionOpenCounts.Builder
openActivityTasks(Integer openActivityTasks)
The count of activity tasks whose status isOPEN
.WorkflowExecutionOpenCounts.Builder
openChildWorkflowExecutions(Integer openChildWorkflowExecutions)
The count of child workflow executions whose status isOPEN
.WorkflowExecutionOpenCounts.Builder
openDecisionTasks(Integer openDecisionTasks)
The count of decision tasks whose status is OPEN.WorkflowExecutionOpenCounts.Builder
openLambdaFunctions(Integer openLambdaFunctions)
The count of Lambda tasks whose status isOPEN
.WorkflowExecutionOpenCounts.Builder
openTimers(Integer openTimers)
The count of timers started by this workflow execution that have not fired yet.-
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, sdkFields
-
-
-
-
Method Detail
-
openActivityTasks
WorkflowExecutionOpenCounts.Builder openActivityTasks(Integer openActivityTasks)
The count of activity tasks whose status is
OPEN
.- Parameters:
openActivityTasks
- The count of activity tasks whose status isOPEN
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
openDecisionTasks
WorkflowExecutionOpenCounts.Builder openDecisionTasks(Integer openDecisionTasks)
The count of decision tasks whose status is OPEN. A workflow execution can have at most one open decision task.
- Parameters:
openDecisionTasks
- The count of decision tasks whose status is OPEN. A workflow execution can have at most one open decision task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
openTimers
WorkflowExecutionOpenCounts.Builder openTimers(Integer openTimers)
The count of timers started by this workflow execution that have not fired yet.
- Parameters:
openTimers
- The count of timers started by this workflow execution that have not fired yet.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
openChildWorkflowExecutions
WorkflowExecutionOpenCounts.Builder openChildWorkflowExecutions(Integer openChildWorkflowExecutions)
The count of child workflow executions whose status is
OPEN
.- Parameters:
openChildWorkflowExecutions
- The count of child workflow executions whose status isOPEN
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
openLambdaFunctions
WorkflowExecutionOpenCounts.Builder openLambdaFunctions(Integer openLambdaFunctions)
The count of Lambda tasks whose status is
OPEN
.- Parameters:
openLambdaFunctions
- The count of Lambda tasks whose status isOPEN
.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-