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 Workflow = Workflow' {}
- newWorkflow :: Workflow
- workflow_graph :: Lens' Workflow (Maybe WorkflowGraph)
- workflow_lastModifiedOn :: Lens' Workflow (Maybe UTCTime)
- workflow_blueprintDetails :: Lens' Workflow (Maybe BlueprintDetails)
- workflow_maxConcurrentRuns :: Lens' Workflow (Maybe Int)
- workflow_defaultRunProperties :: Lens' Workflow (Maybe (HashMap Text Text))
- workflow_name :: Lens' Workflow (Maybe Text)
- workflow_lastRun :: Lens' Workflow (Maybe WorkflowRun)
- workflow_description :: Lens' Workflow (Maybe Text)
- workflow_createdOn :: Lens' Workflow (Maybe UTCTime)
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:graph: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:blueprintDetails:Workflow'
, workflow_blueprintDetails
- This structure indicates the details of the blueprint that this
particular workflow is created from.
$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.
$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:name:Workflow'
, workflow_name
- The name of the workflow.
$sel:lastRun:Workflow'
, workflow_lastRun
- The information about the last execution of the workflow.
$sel:description:Workflow'
, workflow_description
- A description of the workflow.
$sel:createdOn:Workflow'
, workflow_createdOn
- The date and time when the workflow was created.
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_blueprintDetails :: Lens' Workflow (Maybe BlueprintDetails) Source #
This structure indicates the details of the blueprint that this particular workflow is created from.
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.
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_lastRun :: Lens' Workflow (Maybe WorkflowRun) Source #
The information about the last execution of the workflow.