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

Description

 
Synopsis

Documentation

data MapRunListItem Source #

Contains details about a specific Map Run.

See: newMapRunListItem smart constructor.

Constructors

MapRunListItem' 

Fields

Instances

Instances details
FromJSON MapRunListItem Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.MapRunListItem

Generic MapRunListItem Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.MapRunListItem

Associated Types

type Rep MapRunListItem :: Type -> Type #

Read MapRunListItem Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.MapRunListItem

Show MapRunListItem Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.MapRunListItem

NFData MapRunListItem Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.MapRunListItem

Methods

rnf :: MapRunListItem -> () #

Eq MapRunListItem Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.MapRunListItem

Hashable MapRunListItem Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.MapRunListItem

type Rep MapRunListItem Source # 
Instance details

Defined in Amazonka.StepFunctions.Types.MapRunListItem

type Rep MapRunListItem = D1 ('MetaData "MapRunListItem" "Amazonka.StepFunctions.Types.MapRunListItem" "amazonka-stepfunctions-2.0-K6z2kqboJVbL1MZX8DUt0f" 'False) (C1 ('MetaCons "MapRunListItem'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "stopDate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "executionArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "mapRunArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: (S1 ('MetaSel ('Just "stateMachineArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "startDate") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 POSIX)))))

newMapRunListItem Source #

Create a value of MapRunListItem 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:MapRunListItem', mapRunListItem_stopDate - The date on which the Map Run stopped.

$sel:executionArn:MapRunListItem', mapRunListItem_executionArn - The executionArn of the execution from which the Map Run was started.

$sel:mapRunArn:MapRunListItem', mapRunListItem_mapRunArn - The Amazon Resource Name (ARN) of the Map Run.

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

$sel:startDate:MapRunListItem', mapRunListItem_startDate - The date on which the Map Run started.

mapRunListItem_stopDate :: Lens' MapRunListItem (Maybe UTCTime) Source #

The date on which the Map Run stopped.

mapRunListItem_executionArn :: Lens' MapRunListItem Text Source #

The executionArn of the execution from which the Map Run was started.

mapRunListItem_mapRunArn :: Lens' MapRunListItem Text Source #

The Amazon Resource Name (ARN) of the Map Run.

mapRunListItem_stateMachineArn :: Lens' MapRunListItem Text Source #

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

mapRunListItem_startDate :: Lens' MapRunListItem UTCTime Source #

The date on which the Map Run started.