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 StateExitedEventDetails = StateExitedEventDetails' {}
- newStateExitedEventDetails :: Text -> StateExitedEventDetails
- stateExitedEventDetails_output :: Lens' StateExitedEventDetails (Maybe Text)
- stateExitedEventDetails_outputDetails :: Lens' StateExitedEventDetails (Maybe HistoryEventExecutionDataDetails)
- stateExitedEventDetails_name :: Lens' StateExitedEventDetails Text
Documentation
data StateExitedEventDetails Source #
Contains details about an exit from a state during an execution.
See: newStateExitedEventDetails
smart constructor.
StateExitedEventDetails' | |
|
Instances
newStateExitedEventDetails Source #
Create a value of StateExitedEventDetails
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:output:StateExitedEventDetails'
, stateExitedEventDetails_output
- The JSON output data of the state. Length constraints apply to the
payload size, and are expressed as bytes in UTF-8 encoding.
$sel:outputDetails:StateExitedEventDetails'
, stateExitedEventDetails_outputDetails
- Contains details about the output of an execution history event.
$sel:name:StateExitedEventDetails'
, stateExitedEventDetails_name
- The name of the state.
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 _.
stateExitedEventDetails_output :: Lens' StateExitedEventDetails (Maybe Text) Source #
The JSON output data of the state. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.
stateExitedEventDetails_outputDetails :: Lens' StateExitedEventDetails (Maybe HistoryEventExecutionDataDetails) Source #
Contains details about the output of an execution history event.
stateExitedEventDetails_name :: Lens' StateExitedEventDetails Text Source #
The name of the state.
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 _.