Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Synopsis
- data ExecutionListItem = ExecutionListItem' {
- stopDate :: Maybe POSIX
- executionArn :: Text
- stateMachineArn :: Text
- name :: Text
- status :: ExecutionStatus
- startDate :: POSIX
- newExecutionListItem :: Text -> Text -> Text -> ExecutionStatus -> UTCTime -> ExecutionListItem
- executionListItem_stopDate :: Lens' ExecutionListItem (Maybe UTCTime)
- executionListItem_executionArn :: Lens' ExecutionListItem Text
- executionListItem_stateMachineArn :: Lens' ExecutionListItem Text
- executionListItem_name :: Lens' ExecutionListItem Text
- executionListItem_status :: Lens' ExecutionListItem ExecutionStatus
- executionListItem_startDate :: Lens' ExecutionListItem UTCTime
Documentation
data ExecutionListItem Source #
Contains details about an execution.
See: newExecutionListItem
smart constructor.
ExecutionListItem' | |
|
Instances
:: Text | |
-> Text | |
-> Text | |
-> ExecutionStatus | |
-> UTCTime | |
-> ExecutionListItem |
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 _.
executionListItem_status :: Lens' ExecutionListItem ExecutionStatus Source #
The current status of the execution.
executionListItem_startDate :: Lens' ExecutionListItem UTCTime Source #
The date the execution started.