Class: Aws::States::Types::MapRunExecutionCounts
- Inherits:
-
Struct
- Object
- Struct
- Aws::States::Types::MapRunExecutionCounts
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-states/types.rb
Overview
Contains details about all of the child workflow executions started by a Map Run.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#aborted ⇒ Integer
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.
-
#failed ⇒ Integer
The total number of child workflow executions that were started by a Map Run, but have failed.
-
#failures_not_redrivable ⇒ Integer
The number of ‘FAILED`, `ABORTED`, or `TIMED_OUT` child workflow executions that cannot be redriven because their execution status is terminal.
-
#pending ⇒ Integer
The total number of child workflow executions that were started by a Map Run, but haven’t started executing yet.
-
#pending_redrive ⇒ Integer
The number of unsuccessful child workflow executions currently waiting to be redriven.
-
#results_written ⇒ Integer
Returns the count of child workflow executions whose results were written by ‘ResultWriter`.
-
#running ⇒ Integer
The total number of child workflow executions that were started by a Map Run and are currently in-progress.
-
#succeeded ⇒ Integer
The total number of child workflow executions that were started by a Map Run and have completed successfully.
-
#timed_out ⇒ Integer
The total number of child workflow executions that were started by a Map Run and have timed out.
-
#total ⇒ Integer
The total number of child workflow executions that were started by a Map Run.
Instance Attribute Details
#aborted ⇒ Integer
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.
2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 |
# File 'lib/aws-sdk-states/types.rb', line 2960 class MapRunExecutionCounts < 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 child workflow executions that were started by a Map Run, but have failed.
2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 |
# File 'lib/aws-sdk-states/types.rb', line 2960 class MapRunExecutionCounts < 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` child workflow executions that cannot be redriven because their execution status is terminal. For example, child workflows with an execution status of `FAILED`, `ABORTED`, or `TIMED_OUT` and a `redriveStatus` of `NOT_REDRIVABLE`.
2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 |
# File 'lib/aws-sdk-states/types.rb', line 2960 class MapRunExecutionCounts < 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 child workflow executions that were started by a Map Run, but haven’t started executing yet.
2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 |
# File 'lib/aws-sdk-states/types.rb', line 2960 class MapRunExecutionCounts < 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 child workflow executions currently waiting to be redriven. The status of these child workflow executions could be ‘FAILED`, `ABORTED`, or `TIMED_OUT` in the original execution attempt or a previous redrive attempt.
2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 |
# File 'lib/aws-sdk-states/types.rb', line 2960 class MapRunExecutionCounts < 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 child workflow executions whose results were written by ‘ResultWriter`. For more information, see
- ResultWriter][1
-
in the *Step Functions Developer Guide*.
[1]: docs.aws.amazon.com/step-functions/latest/dg/input-output-resultwriter.html
2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 |
# File 'lib/aws-sdk-states/types.rb', line 2960 class MapRunExecutionCounts < 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 child workflow executions that were started by a Map Run and are currently in-progress.
2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 |
# File 'lib/aws-sdk-states/types.rb', line 2960 class MapRunExecutionCounts < 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 child workflow executions that were started by a Map Run and have completed successfully.
2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 |
# File 'lib/aws-sdk-states/types.rb', line 2960 class MapRunExecutionCounts < 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 child workflow executions that were started by a Map Run and have timed out.
2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 |
# File 'lib/aws-sdk-states/types.rb', line 2960 class MapRunExecutionCounts < 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 child workflow executions that were started by a Map Run.
2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 |
# File 'lib/aws-sdk-states/types.rb', line 2960 class MapRunExecutionCounts < Struct.new( :pending, :running, :succeeded, :failed, :timed_out, :aborted, :total, :results_written, :failures_not_redrivable, :pending_redrive) SENSITIVE = [] include Aws::Structure end |