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.MapRunExecutionCounts

Description

 
Synopsis

Documentation

data MapRunExecutionCounts Source #

Contains details about all of the child workflow executions started by a Map Run.

See: newMapRunExecutionCounts smart constructor.

Constructors

MapRunExecutionCounts' 

Fields

  • pending :: Natural

    The total number of child workflow executions that were started by a Map Run, but haven't started executing yet.

  • running :: Natural

    The total number of child workflow executions that were started by a Map Run and are currently in-progress.

  • succeeded :: Natural

    The total number of child workflow executions that were started by a Map Run and have completed successfully.

  • failed :: Natural

    The total number of child workflow executions that were started by a Map Run, but have failed.

  • timedOut :: Natural

    The total number of child workflow executions that were started by a Map Run and have timed out.

  • aborted :: Natural

    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.

  • total :: Natural

    The total number of child workflow executions that were started by a Map Run.

  • resultsWritten :: Natural

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

Instances

Instances details
FromJSON MapRunExecutionCounts Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.MapRunExecutionCounts

Generic MapRunExecutionCounts Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.MapRunExecutionCounts

Associated Types

type Rep MapRunExecutionCounts :: Type -> Type #

Read MapRunExecutionCounts Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.MapRunExecutionCounts

Show MapRunExecutionCounts Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.MapRunExecutionCounts

NFData MapRunExecutionCounts Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.MapRunExecutionCounts

Methods

rnf :: MapRunExecutionCounts -> () #

Eq MapRunExecutionCounts Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.MapRunExecutionCounts

Hashable MapRunExecutionCounts Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.MapRunExecutionCounts

type Rep MapRunExecutionCounts Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.MapRunExecutionCounts

newMapRunExecutionCounts Source #

Create a value of MapRunExecutionCounts 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:MapRunExecutionCounts', mapRunExecutionCounts_pending - The total number of child workflow executions that were started by a Map Run, but haven't started executing yet.

$sel:running:MapRunExecutionCounts', mapRunExecutionCounts_running - The total number of child workflow executions that were started by a Map Run and are currently in-progress.

$sel:succeeded:MapRunExecutionCounts', mapRunExecutionCounts_succeeded - The total number of child workflow executions that were started by a Map Run and have completed successfully.

$sel:failed:MapRunExecutionCounts', mapRunExecutionCounts_failed - The total number of child workflow executions that were started by a Map Run, but have failed.

$sel:timedOut:MapRunExecutionCounts', mapRunExecutionCounts_timedOut - The total number of child workflow executions that were started by a Map Run and have timed out.

$sel:aborted:MapRunExecutionCounts', mapRunExecutionCounts_aborted - 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.

$sel:total:MapRunExecutionCounts', mapRunExecutionCounts_total - The total number of child workflow executions that were started by a Map Run.

$sel:resultsWritten:MapRunExecutionCounts', mapRunExecutionCounts_resultsWritten - Returns the count of child workflow executions whose results were written by ResultWriter. For more information, see ResultWriter in the Step Functions Developer Guide.

mapRunExecutionCounts_pending :: Lens' MapRunExecutionCounts Natural Source #

The total number of child workflow executions that were started by a Map Run, but haven't started executing yet.

mapRunExecutionCounts_running :: Lens' MapRunExecutionCounts Natural Source #

The total number of child workflow executions that were started by a Map Run and are currently in-progress.

mapRunExecutionCounts_succeeded :: Lens' MapRunExecutionCounts Natural Source #

The total number of child workflow executions that were started by a Map Run and have completed successfully.

mapRunExecutionCounts_failed :: Lens' MapRunExecutionCounts Natural Source #

The total number of child workflow executions that were started by a Map Run, but have failed.

mapRunExecutionCounts_timedOut :: Lens' MapRunExecutionCounts Natural Source #

The total number of child workflow executions that were started by a Map Run and have timed out.

mapRunExecutionCounts_aborted :: Lens' MapRunExecutionCounts Natural Source #

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.

mapRunExecutionCounts_total :: Lens' MapRunExecutionCounts Natural Source #

The total number of child workflow executions that were started by a Map Run.

mapRunExecutionCounts_resultsWritten :: Lens' MapRunExecutionCounts Natural Source #

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