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

Description

 
Synopsis

Documentation

data ExecutionListItem Source #

Contains details about an execution.

See: newExecutionListItem smart constructor.

Constructors

ExecutionListItem' 

Fields

  • itemCount :: Maybe Natural

    The total number of items processed in a child workflow execution. This field is returned only if mapRunArn was specified in the ListExecutions API action. If stateMachineArn was specified in ListExecutions, the itemCount field isn't returned.

  • mapRunArn :: Maybe Text

    The Amazon Resource Name (ARN) of a Map Run. This field is returned only if mapRunArn was specified in the ListExecutions API action. If stateMachineArn was specified in ListExecutions, the mapRunArn isn't returned.

  • stopDate :: Maybe POSIX

    If the execution already ended, the date the execution stopped.

  • executionArn :: Text

    The Amazon Resource Name (ARN) that identifies the execution.

  • stateMachineArn :: Text

    The Amazon Resource Name (ARN) of the executed state machine.

  • name :: Text

    The name of the execution.

    A name must not contain:

    • white space
    • brackets < > { } [ ]
    • wildcard characters ? *
    • special characters " # % \ ^ | ~ ` $ & , ; : /
    • control characters (U+0000-001F, U+007F-009F)

    To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.

  • status :: ExecutionStatus

    The current status of the execution.

  • startDate :: POSIX

    The date the execution started.

Instances

Instances details
FromJSON ExecutionListItem Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.ExecutionListItem

Generic ExecutionListItem Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.ExecutionListItem

Associated Types

type Rep ExecutionListItem :: Type -> Type #

Read ExecutionListItem Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.ExecutionListItem

Show ExecutionListItem Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.ExecutionListItem

NFData ExecutionListItem Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.ExecutionListItem

Methods

rnf :: ExecutionListItem -> () #

Eq ExecutionListItem Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.ExecutionListItem

Hashable ExecutionListItem Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.ExecutionListItem

type Rep ExecutionListItem Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.ExecutionListItem

newExecutionListItem Source #

Create a value of ExecutionListItem 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:itemCount:ExecutionListItem', executionListItem_itemCount - The total number of items processed in a child workflow execution. This field is returned only if mapRunArn was specified in the ListExecutions API action. If stateMachineArn was specified in ListExecutions, the itemCount field isn't returned.

$sel:mapRunArn:ExecutionListItem', executionListItem_mapRunArn - The Amazon Resource Name (ARN) of a Map Run. This field is returned only if mapRunArn was specified in the ListExecutions API action. If stateMachineArn was specified in ListExecutions, the mapRunArn isn't returned.

$sel:stopDate:ExecutionListItem', executionListItem_stopDate - If the execution already ended, the date the execution stopped.

$sel:executionArn:ExecutionListItem', executionListItem_executionArn - The Amazon Resource Name (ARN) that identifies the execution.

$sel:stateMachineArn:ExecutionListItem', executionListItem_stateMachineArn - The Amazon Resource Name (ARN) of the executed state machine.

$sel:name:ExecutionListItem', executionListItem_name - The name of the execution.

A name must not contain:

  • white space
  • brackets < > { } [ ]
  • wildcard characters ? *
  • special characters " # % \ ^ | ~ ` $ & , ; : /
  • control characters (U+0000-001F, U+007F-009F)

To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.

$sel:status:ExecutionListItem', executionListItem_status - The current status of the execution.

$sel:startDate:ExecutionListItem', executionListItem_startDate - The date the execution started.

executionListItem_itemCount :: Lens' ExecutionListItem (Maybe Natural) Source #

The total number of items processed in a child workflow execution. This field is returned only if mapRunArn was specified in the ListExecutions API action. If stateMachineArn was specified in ListExecutions, the itemCount field isn't returned.

executionListItem_mapRunArn :: Lens' ExecutionListItem (Maybe Text) Source #

The Amazon Resource Name (ARN) of a Map Run. This field is returned only if mapRunArn was specified in the ListExecutions API action. If stateMachineArn was specified in ListExecutions, the mapRunArn isn't returned.

executionListItem_stopDate :: Lens' ExecutionListItem (Maybe UTCTime) Source #

If the execution already ended, the date the execution stopped.

executionListItem_executionArn :: Lens' ExecutionListItem Text Source #

The Amazon Resource Name (ARN) that identifies the execution.

executionListItem_stateMachineArn :: Lens' ExecutionListItem Text Source #

The Amazon Resource Name (ARN) of the executed state machine.

executionListItem_name :: Lens' ExecutionListItem Text Source #

The name of the execution.

A name must not contain:

  • white space
  • brackets < > { } [ ]
  • wildcard characters ? *
  • special characters " # % \ ^ | ~ ` $ & , ; : /
  • control characters (U+0000-001F, U+007F-009F)

To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.