Class: Aws::States::Types::MapRunItemCounts
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::MapRunItemCounts
- Defined in:
- gems/aws-sdk-states/lib/aws-sdk-states/types.rb
Overview
Contains details about items that were processed in all of the child workflow executions that were started by a Map Run.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#aborted ⇒ Integer
The total number of items processed in child workflow executions that were either stopped by the user or by Step Functions, because the Map Run failed.
-
#failed ⇒ Integer
The total number of items processed in child workflow executions that have failed.
-
#failures_not_redrivable ⇒ Integer
The number of
FAILED,ABORTED, orTIMED_OUTitems in child workflow executions that cannot be redriven because the execution status of those child workflows is terminal. -
#pending ⇒ Integer
The total number of items to process in child workflow executions that haven't started running yet.
-
#pending_redrive ⇒ Integer
The number of unsuccessful items in child workflow executions currently waiting to be redriven.
-
#results_written ⇒ Integer
Returns the count of items whose results were written by
ResultWriter. -
#running ⇒ Integer
The total number of items being processed in child workflow executions that are currently in-progress.
-
#succeeded ⇒ Integer
The total number of items processed in child workflow executions that have completed successfully.
-
#timed_out ⇒ Integer
The total number of items processed in child workflow executions that have timed out.
-
#total ⇒ Integer
The total number of items processed in all the child workflow executions started by a Map Run.
Instance Attribute Details
#aborted ⇒ Integer
The total number of items processed in child workflow executions that were either stopped by the user or by Step Functions, because the Map Run failed.
3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3275 class MapRunItemCounts < Struct.new( :pending, :running, :succeeded, :failed, :timed_out, :aborted, :total, :results_written, :failures_not_redrivable, :pending_redrive) SENSITIVE = [] include Aws::Structure end |
#failed ⇒ Integer
The total number of items processed in child workflow executions that have failed.
3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3275 class MapRunItemCounts < Struct.new( :pending, :running, :succeeded, :failed, :timed_out, :aborted, :total, :results_written, :failures_not_redrivable, :pending_redrive) SENSITIVE = [] include Aws::Structure end |
#failures_not_redrivable ⇒ Integer
The number of FAILED, ABORTED, or TIMED_OUT items in child
workflow executions that cannot be redriven because the execution
status of those child workflows is terminal. For example, child
workflows with an execution status of FAILED, ABORTED, or
TIMED_OUT and a redriveStatus of NOT_REDRIVABLE.
3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3275 class MapRunItemCounts < Struct.new( :pending, :running, :succeeded, :failed, :timed_out, :aborted, :total, :results_written, :failures_not_redrivable, :pending_redrive) SENSITIVE = [] include Aws::Structure end |
#pending ⇒ Integer
The total number of items to process in child workflow executions that haven't started running yet.
3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3275 class MapRunItemCounts < Struct.new( :pending, :running, :succeeded, :failed, :timed_out, :aborted, :total, :results_written, :failures_not_redrivable, :pending_redrive) SENSITIVE = [] include Aws::Structure end |
#pending_redrive ⇒ Integer
The number of unsuccessful items in child workflow executions currently waiting to be redriven.
3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3275 class MapRunItemCounts < Struct.new( :pending, :running, :succeeded, :failed, :timed_out, :aborted, :total, :results_written, :failures_not_redrivable, :pending_redrive) SENSITIVE = [] include Aws::Structure end |
#results_written ⇒ Integer
Returns the count of items whose results were written by
ResultWriter. For more information, see ResultWriter in the
Step Functions Developer Guide.
3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3275 class MapRunItemCounts < Struct.new( :pending, :running, :succeeded, :failed, :timed_out, :aborted, :total, :results_written, :failures_not_redrivable, :pending_redrive) SENSITIVE = [] include Aws::Structure end |
#running ⇒ Integer
The total number of items being processed in child workflow executions that are currently in-progress.
3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3275 class MapRunItemCounts < Struct.new( :pending, :running, :succeeded, :failed, :timed_out, :aborted, :total, :results_written, :failures_not_redrivable, :pending_redrive) SENSITIVE = [] include Aws::Structure end |
#succeeded ⇒ Integer
The total number of items processed in child workflow executions that have completed successfully.
3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3275 class MapRunItemCounts < Struct.new( :pending, :running, :succeeded, :failed, :timed_out, :aborted, :total, :results_written, :failures_not_redrivable, :pending_redrive) SENSITIVE = [] include Aws::Structure end |
#timed_out ⇒ Integer
The total number of items processed in child workflow executions that have timed out.
3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3275 class MapRunItemCounts < Struct.new( :pending, :running, :succeeded, :failed, :timed_out, :aborted, :total, :results_written, :failures_not_redrivable, :pending_redrive) SENSITIVE = [] include Aws::Structure end |
#total ⇒ Integer
The total number of items processed in all the child workflow executions started by a Map Run.
3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 |
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3275 class MapRunItemCounts < Struct.new( :pending, :running, :succeeded, :failed, :timed_out, :aborted, :total, :results_written, :failures_not_redrivable, :pending_redrive) SENSITIVE = [] include Aws::Structure end |