Class MapRunExecutionCounts
- All Implemented Interfaces:
Serializable
,SdkPojo
,ToCopyableBuilder<MapRunExecutionCounts.Builder,
MapRunExecutionCounts>
Contains details about all of the child workflow executions started by a Map Run.
- See Also:
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionfinal Long
aborted()
The total number of child workflow executions that were started by a Map Run and were running, but were either stopped by the user or by Step Functions because the Map Run failed.builder()
final boolean
final boolean
equalsBySdkFields
(Object obj) Indicates whether some other object is "equal to" this one by SDK fields.final Long
failed()
The total number of child workflow executions that were started by a Map Run, but have failed.final Long
The number ofFAILED
,ABORTED
, orTIMED_OUT
child workflow executions that cannot be redriven because their execution status is terminal.final <T> Optional
<T> getValueForField
(String fieldName, Class<T> clazz) final int
hashCode()
final Long
pending()
The total number of child workflow executions that were started by a Map Run, but haven't started executing yet.final Long
The number of unsuccessful child workflow executions currently waiting to be redriven.final Long
Returns the count of child workflow executions whose results were written byResultWriter
.final Long
running()
The total number of child workflow executions that were started by a Map Run and are currently in-progress.static Class
<? extends MapRunExecutionCounts.Builder> final Long
The total number of child workflow executions that were started by a Map Run and have completed successfully.final Long
timedOut()
The total number of child workflow executions that were started by a Map Run and have timed out.Take this object and create a builder that contains all of the current property values of this object.final String
toString()
Returns a string representation of this object.final Long
total()
The total number of child workflow executions that were started by a Map Run.Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
Method Details
-
pending
The total number of child workflow executions that were started by a Map Run, but haven't started executing yet.
- Returns:
- The total number of child workflow executions that were started by a Map Run, but haven't started executing yet.
-
running
The total number of child workflow executions that were started by a Map Run and are currently in-progress.
- Returns:
- The total number of child workflow executions that were started by a Map Run and are currently in-progress.
-
succeeded
The total number of child workflow executions that were started by a Map Run and have completed successfully.
- Returns:
- The total number of child workflow executions that were started by a Map Run and have completed successfully.
-
failed
The total number of child workflow executions that were started by a Map Run, but have failed.
- Returns:
- The total number of child workflow executions that were started by a Map Run, but have failed.
-
timedOut
The total number of child workflow executions that were started by a Map Run and have timed out.
- Returns:
- The total number of child workflow executions that were started by a Map Run and have timed out.
-
aborted
The total number of child workflow executions that were started by a Map Run and were running, but were either stopped by the user or by Step Functions because the Map Run failed.
- Returns:
- The total number of child workflow executions that were started by a Map Run and were running, but were either stopped by the user or by Step Functions because the Map Run failed.
-
total
The total number of child workflow executions that were started by a Map Run.
- Returns:
- The total number of child workflow executions that were started by a Map Run.
-
resultsWritten
Returns the count of child workflow executions whose results were written by
ResultWriter
. For more information, see ResultWriter in the Step Functions Developer Guide.- Returns:
- Returns the count of child workflow executions whose results were written by
ResultWriter
. For more information, see ResultWriter in the Step Functions Developer Guide.
-
failuresNotRedrivable
The number of
FAILED
,ABORTED
, orTIMED_OUT
child workflow executions that cannot be redriven because their execution status is terminal. For example, child workflows with an execution status ofFAILED
,ABORTED
, orTIMED_OUT
and aredriveStatus
ofNOT_REDRIVABLE
.- Returns:
- The number of
FAILED
,ABORTED
, orTIMED_OUT
child workflow executions that cannot be redriven because their execution status is terminal. For example, child workflows with an execution status ofFAILED
,ABORTED
, orTIMED_OUT
and aredriveStatus
ofNOT_REDRIVABLE
.
-
pendingRedrive
The number of unsuccessful child workflow executions currently waiting to be redriven. The status of these child workflow executions could be
FAILED
,ABORTED
, orTIMED_OUT
in the original execution attempt or a previous redrive attempt.- Returns:
- The number of unsuccessful child workflow executions currently waiting to be redriven. The status of
these child workflow executions could be
FAILED
,ABORTED
, orTIMED_OUT
in the original execution attempt or a previous redrive attempt.
-
toBuilder
Description copied from interface:ToCopyableBuilder
Take this object and create a builder that contains all of the current property values of this object.- Specified by:
toBuilder
in interfaceToCopyableBuilder<MapRunExecutionCounts.Builder,
MapRunExecutionCounts> - Returns:
- a builder for type T
-
builder
-
serializableBuilderClass
-
hashCode
-
equals
-
equalsBySdkFields
Description copied from interface:SdkPojo
Indicates whether some other object is "equal to" this one by SDK fields. An SDK field is a modeled, non-inherited field in anSdkPojo
class, and is generated based on a service model.If an
SdkPojo
class does not have any inherited fields,equalsBySdkFields
andequals
are essentially the same.- Specified by:
equalsBySdkFields
in interfaceSdkPojo
- Parameters:
obj
- the object to be compared with- Returns:
- true if the other object equals to this object by sdk fields, false otherwise.
-
toString
-
getValueForField
-
sdkFields
-
sdkFieldNameToField
- Specified by:
sdkFieldNameToField
in interfaceSdkPojo
- Returns:
- The mapping between the field name and its corresponding field.
-