| Copyright | (c) 2013-2023 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
Amazonka.StepFunctions.Types.TaskScheduledEventDetails
Description
Synopsis
- data TaskScheduledEventDetails = TaskScheduledEventDetails' {}
- newTaskScheduledEventDetails :: Text -> Text -> Text -> Text -> TaskScheduledEventDetails
- taskScheduledEventDetails_heartbeatInSeconds :: Lens' TaskScheduledEventDetails (Maybe Integer)
- taskScheduledEventDetails_taskCredentials :: Lens' TaskScheduledEventDetails (Maybe TaskCredentials)
- taskScheduledEventDetails_timeoutInSeconds :: Lens' TaskScheduledEventDetails (Maybe Integer)
- taskScheduledEventDetails_resourceType :: Lens' TaskScheduledEventDetails Text
- taskScheduledEventDetails_resource :: Lens' TaskScheduledEventDetails Text
- taskScheduledEventDetails_region :: Lens' TaskScheduledEventDetails Text
- taskScheduledEventDetails_parameters :: Lens' TaskScheduledEventDetails Text
Documentation
data TaskScheduledEventDetails Source #
Contains details about a task scheduled during an execution.
See: newTaskScheduledEventDetails smart constructor.
Constructors
| TaskScheduledEventDetails' | |
Fields
| |
Instances
newTaskScheduledEventDetails Source #
Arguments
| :: Text | |
| -> Text | |
| -> Text | |
| -> Text | |
| -> TaskScheduledEventDetails |
Create a value of TaskScheduledEventDetails 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:heartbeatInSeconds:TaskScheduledEventDetails', taskScheduledEventDetails_heartbeatInSeconds - The maximum allowed duration between two heartbeats for the task.
$sel:taskCredentials:TaskScheduledEventDetails', taskScheduledEventDetails_taskCredentials - The credentials that Step Functions uses for the task.
$sel:timeoutInSeconds:TaskScheduledEventDetails', taskScheduledEventDetails_timeoutInSeconds - The maximum allowed duration of the task.
$sel:resourceType:TaskScheduledEventDetails', taskScheduledEventDetails_resourceType - The service name of the resource in a task state.
$sel:resource:TaskScheduledEventDetails', taskScheduledEventDetails_resource - The action of the resource called by a task state.
$sel:region:TaskScheduledEventDetails', taskScheduledEventDetails_region - The region of the scheduled task
$sel:parameters:TaskScheduledEventDetails', taskScheduledEventDetails_parameters - The JSON data passed to the resource referenced in a task state. Length
constraints apply to the payload size, and are expressed as bytes in
UTF-8 encoding.
taskScheduledEventDetails_heartbeatInSeconds :: Lens' TaskScheduledEventDetails (Maybe Integer) Source #
The maximum allowed duration between two heartbeats for the task.
taskScheduledEventDetails_taskCredentials :: Lens' TaskScheduledEventDetails (Maybe TaskCredentials) Source #
The credentials that Step Functions uses for the task.
taskScheduledEventDetails_timeoutInSeconds :: Lens' TaskScheduledEventDetails (Maybe Integer) Source #
The maximum allowed duration of the task.
taskScheduledEventDetails_resourceType :: Lens' TaskScheduledEventDetails Text Source #
The service name of the resource in a task state.
taskScheduledEventDetails_resource :: Lens' TaskScheduledEventDetails Text Source #
The action of the resource called by a task state.
taskScheduledEventDetails_region :: Lens' TaskScheduledEventDetails Text Source #
The region of the scheduled task
taskScheduledEventDetails_parameters :: Lens' TaskScheduledEventDetails Text Source #
The JSON data passed to the resource referenced in a task state. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.