amazonka-stepfunctions-2.0: Amazon Step Functions SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.StepFunctions.Types.MapRunItemCounts

Description

 
Synopsis

Documentation

data MapRunItemCounts Source #

Contains details about items that were processed in all of the child workflow executions that were started by a Map Run.

See: newMapRunItemCounts smart constructor.

Constructors

MapRunItemCounts' 

Fields

  • pending :: Natural

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

  • running :: Natural

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

  • succeeded :: Natural

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

  • failed :: Natural

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

  • timedOut :: Natural

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

  • aborted :: Natural

    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.

  • total :: Natural

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

  • resultsWritten :: Natural

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

Instances

Instances details
FromJSON MapRunItemCounts Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.MapRunItemCounts

Generic MapRunItemCounts Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.MapRunItemCounts

Associated Types

type Rep MapRunItemCounts :: Type -> Type #

Read MapRunItemCounts Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.MapRunItemCounts

Show MapRunItemCounts Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.MapRunItemCounts

NFData MapRunItemCounts Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.MapRunItemCounts

Methods

rnf :: MapRunItemCounts -> () #

Eq MapRunItemCounts Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.MapRunItemCounts

Hashable MapRunItemCounts Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.MapRunItemCounts

type Rep MapRunItemCounts Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.MapRunItemCounts

newMapRunItemCounts Source #

Create a value of MapRunItemCounts with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:pending:MapRunItemCounts', mapRunItemCounts_pending - The total number of items to process in child workflow executions that haven't started running yet.

$sel:running:MapRunItemCounts', mapRunItemCounts_running - The total number of items being processed in child workflow executions that are currently in-progress.

$sel:succeeded:MapRunItemCounts', mapRunItemCounts_succeeded - The total number of items processed in child workflow executions that have completed successfully.

$sel:failed:MapRunItemCounts', mapRunItemCounts_failed - The total number of items processed in child workflow executions that have failed.

$sel:timedOut:MapRunItemCounts', mapRunItemCounts_timedOut - The total number of items processed in child workflow executions that have timed out.

$sel:aborted:MapRunItemCounts', mapRunItemCounts_aborted - 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.

$sel:total:MapRunItemCounts', mapRunItemCounts_total - The total number of items processed in all the child workflow executions started by a Map Run.

$sel:resultsWritten:MapRunItemCounts', mapRunItemCounts_resultsWritten - Returns the count of items whose results were written by ResultWriter. For more information, see ResultWriter in the Step Functions Developer Guide.

mapRunItemCounts_pending :: Lens' MapRunItemCounts Natural Source #

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

mapRunItemCounts_running :: Lens' MapRunItemCounts Natural Source #

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

mapRunItemCounts_succeeded :: Lens' MapRunItemCounts Natural Source #

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

mapRunItemCounts_failed :: Lens' MapRunItemCounts Natural Source #

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

mapRunItemCounts_timedOut :: Lens' MapRunItemCounts Natural Source #

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

mapRunItemCounts_aborted :: Lens' MapRunItemCounts Natural Source #

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.

mapRunItemCounts_total :: Lens' MapRunItemCounts Natural Source #

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

mapRunItemCounts_resultsWritten :: Lens' MapRunItemCounts Natural Source #

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