Class WorkflowExecutionOpenCounts
- java.lang.Object
-
- software.amazon.awssdk.services.swf.model.WorkflowExecutionOpenCounts
-
- All Implemented Interfaces:
Serializable
,SdkPojo
,ToCopyableBuilder<WorkflowExecutionOpenCounts.Builder,WorkflowExecutionOpenCounts>
@Generated("software.amazon.awssdk:codegen") public final class WorkflowExecutionOpenCounts extends Object implements SdkPojo, Serializable, ToCopyableBuilder<WorkflowExecutionOpenCounts.Builder,WorkflowExecutionOpenCounts>
Contains the counts of open tasks, child workflow executions and timers for a workflow execution.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
WorkflowExecutionOpenCounts.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static WorkflowExecutionOpenCounts.Builder
builder()
boolean
equals(Object obj)
boolean
equalsBySdkFields(Object obj)
<T> Optional<T>
getValueForField(String fieldName, Class<T> clazz)
int
hashCode()
Integer
openActivityTasks()
The count of activity tasks whose status isOPEN
.Integer
openChildWorkflowExecutions()
The count of child workflow executions whose status isOPEN
.Integer
openDecisionTasks()
The count of decision tasks whose status is OPEN.Integer
openLambdaFunctions()
The count of Lambda tasks whose status isOPEN
.Integer
openTimers()
The count of timers started by this workflow execution that have not fired yet.Map<String,SdkField<?>>
sdkFieldNameToField()
List<SdkField<?>>
sdkFields()
static Class<? extends WorkflowExecutionOpenCounts.Builder>
serializableBuilderClass()
WorkflowExecutionOpenCounts.Builder
toBuilder()
String
toString()
Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
openActivityTasks
public final Integer openActivityTasks()
The count of activity tasks whose status is
OPEN
.- Returns:
- The count of activity tasks whose status is
OPEN
.
-
openDecisionTasks
public final Integer openDecisionTasks()
The count of decision tasks whose status is OPEN. A workflow execution can have at most one open decision task.
- Returns:
- The count of decision tasks whose status is OPEN. A workflow execution can have at most one open decision task.
-
openTimers
public final Integer openTimers()
The count of timers started by this workflow execution that have not fired yet.
- Returns:
- The count of timers started by this workflow execution that have not fired yet.
-
openChildWorkflowExecutions
public final Integer openChildWorkflowExecutions()
The count of child workflow executions whose status is
OPEN
.- Returns:
- The count of child workflow executions whose status is
OPEN
.
-
openLambdaFunctions
public final Integer openLambdaFunctions()
The count of Lambda tasks whose status is
OPEN
.- Returns:
- The count of Lambda tasks whose status is
OPEN
.
-
toBuilder
public WorkflowExecutionOpenCounts.Builder toBuilder()
- Specified by:
toBuilder
in interfaceToCopyableBuilder<WorkflowExecutionOpenCounts.Builder,WorkflowExecutionOpenCounts>
-
builder
public static WorkflowExecutionOpenCounts.Builder builder()
-
serializableBuilderClass
public static Class<? extends WorkflowExecutionOpenCounts.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFields
in interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
sdkFieldNameToField
public final Map<String,SdkField<?>> sdkFieldNameToField()
- Specified by:
sdkFieldNameToField
in interfaceSdkPojo
-
-