libZSservicesZSamazonka-stepfunctionsZSamazonka-stepfunctions
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.StepFunctions.Types.ExecutionListItem

Description

 
Synopsis

Documentation

data ExecutionListItem Source #

Contains details about an execution.

See: newExecutionListItem smart constructor.

Constructors

ExecutionListItem' 

Fields

  • 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
Eq ExecutionListItem Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.ExecutionListItem

Read ExecutionListItem Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.ExecutionListItem

Show 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 #

NFData ExecutionListItem Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.ExecutionListItem

Methods

rnf :: ExecutionListItem -> () #

Hashable ExecutionListItem Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.ExecutionListItem

FromJSON ExecutionListItem Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.ExecutionListItem

type Rep ExecutionListItem Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.ExecutionListItem

type Rep ExecutionListItem = D1 ('MetaData "ExecutionListItem" "Amazonka.StepFunctions.Types.ExecutionListItem" "libZSservicesZSamazonka-stepfunctionsZSamazonka-stepfunctions" 'False) (C1 ('MetaCons "ExecutionListItem'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "stopDate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: (S1 ('MetaSel ('Just "executionArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "stateMachineArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))) :*: (S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 ExecutionStatus) :*: S1 ('MetaSel ('Just "startDate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX)))))

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: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_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 _.