libZSservicesZSamazonka-glueZSamazonka-glue
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.Glue.Types.Workflow

Description

 
Synopsis

Documentation

data Workflow Source #

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.

Constructors

Workflow' 

Fields

  • graph :: Maybe WorkflowGraph

    The graph representing all the Glue components that belong to the workflow as nodes and directed connections between them as edges.

  • lastModifiedOn :: Maybe POSIX

    The date and time when the workflow was last modified.

  • blueprintDetails :: Maybe BlueprintDetails

    This structure indicates the details of the blueprint that this particular workflow is created from.

  • maxConcurrentRuns :: Maybe Int

    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.

  • defaultRunProperties :: Maybe (HashMap Text Text)

    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.

  • name :: Maybe Text

    The name of the workflow.

  • lastRun :: Maybe WorkflowRun

    The information about the last execution of the workflow.

  • description :: Maybe Text

    A description of the workflow.

  • createdOn :: Maybe POSIX

    The date and time when the workflow was created.

Instances

Instances details
Eq Workflow Source # 
Instance details

Defined in Amazonka.Glue.Types.Workflow

Read Workflow Source # 
Instance details

Defined in Amazonka.Glue.Types.Workflow

Show Workflow Source # 
Instance details

Defined in Amazonka.Glue.Types.Workflow

Generic Workflow Source # 
Instance details

Defined in Amazonka.Glue.Types.Workflow

Associated Types

type Rep Workflow :: Type -> Type #

Methods

from :: Workflow -> Rep Workflow x #

to :: Rep Workflow x -> Workflow #

NFData Workflow Source # 
Instance details

Defined in Amazonka.Glue.Types.Workflow

Methods

rnf :: Workflow -> () #

Hashable Workflow Source # 
Instance details

Defined in Amazonka.Glue.Types.Workflow

Methods

hashWithSalt :: Int -> Workflow -> Int #

hash :: Workflow -> Int #

FromJSON Workflow Source # 
Instance details

Defined in Amazonka.Glue.Types.Workflow

type Rep Workflow Source # 
Instance details

Defined in Amazonka.Glue.Types.Workflow

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_name :: Lens' Workflow (Maybe Text) Source #

The name of the workflow.

workflow_lastRun :: Lens' Workflow (Maybe WorkflowRun) Source #

The information about the last execution of the workflow.

workflow_description :: Lens' Workflow (Maybe Text) Source #

A description of the workflow.

workflow_createdOn :: Lens' Workflow (Maybe UTCTime) Source #

The date and time when the workflow was created.