amazonka-glue-2.0: Amazon Glue 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.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
FromJSON 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 #

Read WorkflowRunStatistics Source # 
Instance details

Defined in Amazonka.Glue.Types.WorkflowRunStatistics

Show WorkflowRunStatistics Source # 
Instance details

Defined in Amazonka.Glue.Types.WorkflowRunStatistics

NFData WorkflowRunStatistics Source # 
Instance details

Defined in Amazonka.Glue.Types.WorkflowRunStatistics

Methods

rnf :: WorkflowRunStatistics -> () #

Eq WorkflowRunStatistics Source # 
Instance details

Defined in Amazonka.Glue.Types.WorkflowRunStatistics

Hashable 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" "amazonka-glue-2.0-7miPWwBHdfn8N8SvbpLgE0" 'False) (C1 ('MetaCons "WorkflowRunStatistics'" 'PrefixI 'True) (((S1 ('MetaSel ('Just "erroredActions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "failedActions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int))) :*: (S1 ('MetaSel ('Just "runningActions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "stoppedActions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)))) :*: ((S1 ('MetaSel ('Just "succeededActions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "timeoutActions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int))) :*: (S1 ('MetaSel ('Just "totalActions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Int)) :*: S1 ('MetaSel ('Just "waitingActions") '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:erroredActions:WorkflowRunStatistics', workflowRunStatistics_erroredActions - Indicates the count of job runs in the ERROR state in the workflow run.

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

$sel:runningActions:WorkflowRunStatistics', workflowRunStatistics_runningActions - Total number Actions in running state.

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

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

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

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

$sel:waitingActions:WorkflowRunStatistics', workflowRunStatistics_waitingActions - Indicates the count of job runs in WAITING state in the workflow run.

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

Indicates the count of job runs in the ERROR state in the workflow run.

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

Total number of Actions that have failed.

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

Total number of Actions that have stopped.

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

Total number of Actions that have succeeded.

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

Total number of Actions in the workflow run.

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

Indicates the count of job runs in WAITING state in the workflow run.