libZSservicesZSamazonka-glueZSamazonka-glue
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.Glue.Types.WorkflowRunStatistics

Description

 
Synopsis

Documentation

data WorkflowRunStatistics Source #

Workflow run statistics provides statistics about the workflow run.

See: newWorkflowRunStatistics smart constructor.

Constructors

WorkflowRunStatistics' 

Fields

Instances

Instances details
Eq WorkflowRunStatistics Source # 
Instance details

Defined in Amazonka.Glue.Types.WorkflowRunStatistics

Read WorkflowRunStatistics Source # 
Instance details

Defined in Amazonka.Glue.Types.WorkflowRunStatistics

Show WorkflowRunStatistics Source # 
Instance details

Defined in Amazonka.Glue.Types.WorkflowRunStatistics

Generic WorkflowRunStatistics Source # 
Instance details

Defined in Amazonka.Glue.Types.WorkflowRunStatistics

Associated Types

type Rep WorkflowRunStatistics :: Type -> Type #

NFData WorkflowRunStatistics Source # 
Instance details

Defined in Amazonka.Glue.Types.WorkflowRunStatistics

Methods

rnf :: WorkflowRunStatistics -> () #

Hashable WorkflowRunStatistics Source # 
Instance details

Defined in Amazonka.Glue.Types.WorkflowRunStatistics

FromJSON WorkflowRunStatistics Source # 
Instance details

Defined in Amazonka.Glue.Types.WorkflowRunStatistics

type Rep WorkflowRunStatistics Source # 
Instance details

Defined in Amazonka.Glue.Types.WorkflowRunStatistics

type Rep WorkflowRunStatistics = D1 ('MetaData "WorkflowRunStatistics" "Amazonka.Glue.Types.WorkflowRunStatistics" "libZSservicesZSamazonka-glueZSamazonka-glue" 'False) (C1 ('MetaCons "WorkflowRunStatistics'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "runningActions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: (S1 ('MetaSel ('Just "stoppedActions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "totalActions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)))) :*: (S1 ('MetaSel ('Just "failedActions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: (S1 ('MetaSel ('Just "timeoutActions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "succeededActions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int))))))

newWorkflowRunStatistics :: WorkflowRunStatistics Source #

Create a value of WorkflowRunStatistics 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:runningActions:WorkflowRunStatistics', workflowRunStatistics_runningActions - Total number Actions in running state.

$sel:stoppedActions:WorkflowRunStatistics', workflowRunStatistics_stoppedActions - Total number of Actions that have stopped.

$sel:totalActions:WorkflowRunStatistics', workflowRunStatistics_totalActions - Total number of Actions in the workflow run.

$sel:failedActions:WorkflowRunStatistics', workflowRunStatistics_failedActions - Total number of Actions that have failed.

$sel:timeoutActions:WorkflowRunStatistics', workflowRunStatistics_timeoutActions - Total number of Actions that timed out.

$sel:succeededActions:WorkflowRunStatistics', workflowRunStatistics_succeededActions - Total number of Actions that have succeeded.

workflowRunStatistics_stoppedActions :: Lens' WorkflowRunStatistics (Maybe Int) Source #

Total number of Actions that have stopped.

workflowRunStatistics_totalActions :: Lens' WorkflowRunStatistics (Maybe Int) Source #

Total number of Actions in the workflow run.

workflowRunStatistics_failedActions :: Lens' WorkflowRunStatistics (Maybe Int) Source #

Total number of Actions that have failed.

workflowRunStatistics_succeededActions :: Lens' WorkflowRunStatistics (Maybe Int) Source #

Total number of Actions that have succeeded.