Class: Aws::States::Types::MapRunItemCounts

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#abortedInteger

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.

Returns:

  • (Integer)


3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3151

class MapRunItemCounts < Struct.new(
  :pending,
  :running,
  :succeeded,
  :failed,
  :timed_out,
  :aborted,
  :total,
  :results_written,
  :failures_not_redrivable,
  :pending_redrive)
  SENSITIVE = []
  include Aws::Structure
end

#failedInteger

The total number of items processed in child workflow executions that have failed.

Returns:

  • (Integer)


3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3151

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_redrivableInteger

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.

Returns:

  • (Integer)


3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3151

class MapRunItemCounts < Struct.new(
  :pending,
  :running,
  :succeeded,
  :failed,
  :timed_out,
  :aborted,
  :total,
  :results_written,
  :failures_not_redrivable,
  :pending_redrive)
  SENSITIVE = []
  include Aws::Structure
end

#pendingInteger

The total number of items to process in child workflow executions that haven't started running yet.

Returns:

  • (Integer)


3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3151

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_redriveInteger

The number of unsuccessful items in child workflow executions currently waiting to be redriven.

Returns:

  • (Integer)


3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3151

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_writtenInteger

Returns the count of items whose results were written by ResultWriter. For more information, see ResultWriter in the Step Functions Developer Guide.

Returns:

  • (Integer)


3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3151

class MapRunItemCounts < Struct.new(
  :pending,
  :running,
  :succeeded,
  :failed,
  :timed_out,
  :aborted,
  :total,
  :results_written,
  :failures_not_redrivable,
  :pending_redrive)
  SENSITIVE = []
  include Aws::Structure
end

#runningInteger

The total number of items being processed in child workflow executions that are currently in-progress.

Returns:

  • (Integer)


3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3151

class MapRunItemCounts < Struct.new(
  :pending,
  :running,
  :succeeded,
  :failed,
  :timed_out,
  :aborted,
  :total,
  :results_written,
  :failures_not_redrivable,
  :pending_redrive)
  SENSITIVE = []
  include Aws::Structure
end

#succeededInteger

The total number of items processed in child workflow executions that have completed successfully.

Returns:

  • (Integer)


3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3151

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_outInteger

The total number of items processed in child workflow executions that have timed out.

Returns:

  • (Integer)


3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3151

class MapRunItemCounts < Struct.new(
  :pending,
  :running,
  :succeeded,
  :failed,
  :timed_out,
  :aborted,
  :total,
  :results_written,
  :failures_not_redrivable,
  :pending_redrive)
  SENSITIVE = []
  include Aws::Structure
end

#totalInteger

The total number of items processed in all the child workflow executions started by a Map Run.

Returns:

  • (Integer)


3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
# File 'gems/aws-sdk-states/lib/aws-sdk-states/types.rb', line 3151

class MapRunItemCounts < Struct.new(
  :pending,
  :running,
  :succeeded,
  :failed,
  :timed_out,
  :aborted,
  :total,
  :results_written,
  :failures_not_redrivable,
  :pending_redrive)
  SENSITIVE = []
  include Aws::Structure
end