Interface WorkflowRunStatistics.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<WorkflowRunStatistics.Builder,WorkflowRunStatistics>,SdkBuilder<WorkflowRunStatistics.Builder,WorkflowRunStatistics>,SdkPojo
- Enclosing class:
- WorkflowRunStatistics
public static interface WorkflowRunStatistics.Builder extends SdkPojo, CopyableBuilder<WorkflowRunStatistics.Builder,WorkflowRunStatistics>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WorkflowRunStatistics.BuildererroredActions(Integer erroredActions)Indicates the count of job runs in the ERROR state in the workflow run.WorkflowRunStatistics.BuilderfailedActions(Integer failedActions)Total number of Actions that have failed.WorkflowRunStatistics.BuilderrunningActions(Integer runningActions)Total number Actions in running state.WorkflowRunStatistics.BuilderstoppedActions(Integer stoppedActions)Total number of Actions that have stopped.WorkflowRunStatistics.BuildersucceededActions(Integer succeededActions)Total number of Actions that have succeeded.WorkflowRunStatistics.BuildertimeoutActions(Integer timeoutActions)Total number of Actions that timed out.WorkflowRunStatistics.BuildertotalActions(Integer totalActions)Total number of Actions in the workflow run.WorkflowRunStatistics.BuilderwaitingActions(Integer waitingActions)Indicates the count of job runs in WAITING state in the workflow run.-
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
-
totalActions
WorkflowRunStatistics.Builder totalActions(Integer totalActions)
Total number of Actions in the workflow run.
- Parameters:
totalActions- Total number of Actions in the workflow run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
timeoutActions
WorkflowRunStatistics.Builder timeoutActions(Integer timeoutActions)
Total number of Actions that timed out.
- Parameters:
timeoutActions- Total number of Actions that timed out.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
failedActions
WorkflowRunStatistics.Builder failedActions(Integer failedActions)
Total number of Actions that have failed.
- Parameters:
failedActions- Total number of Actions that have failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stoppedActions
WorkflowRunStatistics.Builder stoppedActions(Integer stoppedActions)
Total number of Actions that have stopped.
- Parameters:
stoppedActions- Total number of Actions that have stopped.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
succeededActions
WorkflowRunStatistics.Builder succeededActions(Integer succeededActions)
Total number of Actions that have succeeded.
- Parameters:
succeededActions- Total number of Actions that have succeeded.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
runningActions
WorkflowRunStatistics.Builder runningActions(Integer runningActions)
Total number Actions in running state.
- Parameters:
runningActions- Total number Actions in running state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
erroredActions
WorkflowRunStatistics.Builder erroredActions(Integer erroredActions)
Indicates the count of job runs in the ERROR state in the workflow run.
- Parameters:
erroredActions- Indicates the count of job runs in the ERROR state in the workflow run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
waitingActions
WorkflowRunStatistics.Builder waitingActions(Integer waitingActions)
Indicates the count of job runs in WAITING state in the workflow run.
- Parameters:
waitingActions- Indicates the count of job runs in WAITING state in the workflow run.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-