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 |
Synopsis
- data Workflow = Workflow' {}
- newWorkflow :: Workflow
- workflow_blueprintDetails :: Lens' Workflow (Maybe BlueprintDetails)
- workflow_createdOn :: Lens' Workflow (Maybe UTCTime)
- workflow_defaultRunProperties :: Lens' Workflow (Maybe (HashMap Text Text))
- workflow_description :: Lens' Workflow (Maybe Text)
- workflow_graph :: Lens' Workflow (Maybe WorkflowGraph)
- workflow_lastModifiedOn :: Lens' Workflow (Maybe UTCTime)
- workflow_lastRun :: Lens' Workflow (Maybe WorkflowRun)
- workflow_maxConcurrentRuns :: Lens' Workflow (Maybe Int)
- workflow_name :: Lens' Workflow (Maybe Text)
Documentation
A workflow is a collection of multiple dependent Glue jobs and crawlers that are run to complete a complex ETL task. A workflow manages the execution and monitoring of all its jobs and crawlers.
See: newWorkflow
smart constructor.
Workflow' | |
|
Instances
newWorkflow :: Workflow Source #
Create a value of Workflow
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:blueprintDetails:Workflow'
, workflow_blueprintDetails
- This structure indicates the details of the blueprint that this
particular workflow is created from.
$sel:createdOn:Workflow'
, workflow_createdOn
- The date and time when the workflow was created.
$sel:defaultRunProperties:Workflow'
, workflow_defaultRunProperties
- A collection of properties to be used as part of each execution of the
workflow. The run properties are made available to each job in the
workflow. A job can modify the properties for the next jobs in the flow.
$sel:description:Workflow'
, workflow_description
- A description of the workflow.
Workflow
, workflow_graph
- The graph representing all the Glue components that belong to the
workflow as nodes and directed connections between them as edges.
$sel:lastModifiedOn:Workflow'
, workflow_lastModifiedOn
- The date and time when the workflow was last modified.
$sel:lastRun:Workflow'
, workflow_lastRun
- The information about the last execution of the workflow.
$sel:maxConcurrentRuns:Workflow'
, workflow_maxConcurrentRuns
- You can use this parameter to prevent unwanted multiple updates to data,
to control costs, or in some cases, to prevent exceeding the maximum
number of concurrent runs of any of the component jobs. If you leave
this parameter blank, there is no limit to the number of concurrent
workflow runs.
Workflow
, workflow_name
- The name of the workflow.
workflow_blueprintDetails :: Lens' Workflow (Maybe BlueprintDetails) Source #
This structure indicates the details of the blueprint that this particular workflow is created from.
workflow_createdOn :: Lens' Workflow (Maybe UTCTime) Source #
The date and time when the workflow was created.
workflow_defaultRunProperties :: Lens' Workflow (Maybe (HashMap Text Text)) Source #
A collection of properties to be used as part of each execution of the workflow. The run properties are made available to each job in the workflow. A job can modify the properties for the next jobs in the flow.
workflow_graph :: Lens' Workflow (Maybe WorkflowGraph) Source #
The graph representing all the Glue components that belong to the workflow as nodes and directed connections between them as edges.
workflow_lastModifiedOn :: Lens' Workflow (Maybe UTCTime) Source #
The date and time when the workflow was last modified.
workflow_lastRun :: Lens' Workflow (Maybe WorkflowRun) Source #
The information about the last execution of the workflow.
workflow_maxConcurrentRuns :: Lens' Workflow (Maybe Int) Source #
You can use this parameter to prevent unwanted multiple updates to data, to control costs, or in some cases, to prevent exceeding the maximum number of concurrent runs of any of the component jobs. If you leave this parameter blank, there is no limit to the number of concurrent workflow runs.