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.
-
#pending ⇒ Integer
The total number of child workflow executions that were started by a Map Run, but haven't started executing yet.
-
#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.
2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 |
# File 'lib/aws-sdk-states/types.rb', line 2064 class MapRunExecutionCounts < Struct.new( :pending, :running, :succeeded, :failed, :timed_out, :aborted, :total, :results_written) SENSITIVE = [] include Aws::Structure end |
#failed ⇒ Integer
The total number of child workflow executions that were started by a Map Run, but have failed.
2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 |
# File 'lib/aws-sdk-states/types.rb', line 2064 class MapRunExecutionCounts < Struct.new( :pending, :running, :succeeded, :failed, :timed_out, :aborted, :total, :results_written) 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.
2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 |
# File 'lib/aws-sdk-states/types.rb', line 2064 class MapRunExecutionCounts < Struct.new( :pending, :running, :succeeded, :failed, :timed_out, :aborted, :total, :results_written) 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
2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 |
# File 'lib/aws-sdk-states/types.rb', line 2064 class MapRunExecutionCounts < Struct.new( :pending, :running, :succeeded, :failed, :timed_out, :aborted, :total, :results_written) 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.
2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 |
# File 'lib/aws-sdk-states/types.rb', line 2064 class MapRunExecutionCounts < Struct.new( :pending, :running, :succeeded, :failed, :timed_out, :aborted, :total, :results_written) 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.
2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 |
# File 'lib/aws-sdk-states/types.rb', line 2064 class MapRunExecutionCounts < Struct.new( :pending, :running, :succeeded, :failed, :timed_out, :aborted, :total, :results_written) 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.
2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 |
# File 'lib/aws-sdk-states/types.rb', line 2064 class MapRunExecutionCounts < Struct.new( :pending, :running, :succeeded, :failed, :timed_out, :aborted, :total, :results_written) SENSITIVE = [] include Aws::Structure end |
#total ⇒ Integer
The total number of child workflow executions that were started by a Map Run.
2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 |
# File 'lib/aws-sdk-states/types.rb', line 2064 class MapRunExecutionCounts < Struct.new( :pending, :running, :succeeded, :failed, :timed_out, :aborted, :total, :results_written) SENSITIVE = [] include Aws::Structure end |