libZSservicesZSamazonka-swfZSamazonka-swf
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.SWF.Types.WorkflowExecutionOpenCounts

Description

 
Synopsis

Documentation

data WorkflowExecutionOpenCounts Source #

Contains the counts of open tasks, child workflow executions and timers for a workflow execution.

See: newWorkflowExecutionOpenCounts smart constructor.

Constructors

WorkflowExecutionOpenCounts' 

Fields

Instances

Instances details
Eq WorkflowExecutionOpenCounts Source # 
Instance details

Defined in Amazonka.SWF.Types.WorkflowExecutionOpenCounts

Read WorkflowExecutionOpenCounts Source # 
Instance details

Defined in Amazonka.SWF.Types.WorkflowExecutionOpenCounts

Show WorkflowExecutionOpenCounts Source # 
Instance details

Defined in Amazonka.SWF.Types.WorkflowExecutionOpenCounts

Generic WorkflowExecutionOpenCounts Source # 
Instance details

Defined in Amazonka.SWF.Types.WorkflowExecutionOpenCounts

Associated Types

type Rep WorkflowExecutionOpenCounts :: Type -> Type #

NFData WorkflowExecutionOpenCounts Source # 
Instance details

Defined in Amazonka.SWF.Types.WorkflowExecutionOpenCounts

Hashable WorkflowExecutionOpenCounts Source # 
Instance details

Defined in Amazonka.SWF.Types.WorkflowExecutionOpenCounts

FromJSON WorkflowExecutionOpenCounts Source # 
Instance details

Defined in Amazonka.SWF.Types.WorkflowExecutionOpenCounts

type Rep WorkflowExecutionOpenCounts Source # 
Instance details

Defined in Amazonka.SWF.Types.WorkflowExecutionOpenCounts

type Rep WorkflowExecutionOpenCounts = D1 ('MetaData "WorkflowExecutionOpenCounts" "Amazonka.SWF.Types.WorkflowExecutionOpenCounts" "libZSservicesZSamazonka-swfZSamazonka-swf" 'False) (C1 ('MetaCons "WorkflowExecutionOpenCounts'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "openLambdaFunctions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "openActivityTasks") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Natural)) :*: (S1 ('MetaSel ('Just "openDecisionTasks") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Natural) :*: (S1 ('MetaSel ('Just "openTimers") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Natural) :*: S1 ('MetaSel ('Just "openChildWorkflowExecutions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Natural)))))

newWorkflowExecutionOpenCounts Source #

Create a value of WorkflowExecutionOpenCounts 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:openLambdaFunctions:WorkflowExecutionOpenCounts', workflowExecutionOpenCounts_openLambdaFunctions - The count of Lambda tasks whose status is OPEN.

$sel:openActivityTasks:WorkflowExecutionOpenCounts', workflowExecutionOpenCounts_openActivityTasks - The count of activity tasks whose status is OPEN.

$sel:openDecisionTasks:WorkflowExecutionOpenCounts', workflowExecutionOpenCounts_openDecisionTasks - The count of decision tasks whose status is OPEN. A workflow execution can have at most one open decision task.

$sel:openTimers:WorkflowExecutionOpenCounts', workflowExecutionOpenCounts_openTimers - The count of timers started by this workflow execution that have not fired yet.

$sel:openChildWorkflowExecutions:WorkflowExecutionOpenCounts', workflowExecutionOpenCounts_openChildWorkflowExecutions - The count of child workflow executions whose status is OPEN.

workflowExecutionOpenCounts_openDecisionTasks :: Lens' WorkflowExecutionOpenCounts Natural Source #

The count of decision tasks whose status is OPEN. A workflow execution can have at most one open decision task.

workflowExecutionOpenCounts_openTimers :: Lens' WorkflowExecutionOpenCounts Natural Source #

The count of timers started by this workflow execution that have not fired yet.

workflowExecutionOpenCounts_openChildWorkflowExecutions :: Lens' WorkflowExecutionOpenCounts Natural Source #

The count of child workflow executions whose status is OPEN.