Struct aws_sdk_glue::types::Workflow
source · #[non_exhaustive]pub struct Workflow { /* private fields */ }
Expand description
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.
Implementations§
source§impl Workflow
impl Workflow
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the workflow.
sourcepub fn default_run_properties(&self) -> Option<&HashMap<String, String>>
pub fn default_run_properties(&self) -> Option<&HashMap<String, String>>
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.
sourcepub fn created_on(&self) -> Option<&DateTime>
pub fn created_on(&self) -> Option<&DateTime>
The date and time when the workflow was created.
sourcepub fn last_modified_on(&self) -> Option<&DateTime>
pub fn last_modified_on(&self) -> Option<&DateTime>
The date and time when the workflow was last modified.
sourcepub fn last_run(&self) -> Option<&WorkflowRun>
pub fn last_run(&self) -> Option<&WorkflowRun>
The information about the last execution of the workflow.
sourcepub fn graph(&self) -> Option<&WorkflowGraph>
pub fn graph(&self) -> Option<&WorkflowGraph>
The graph representing all the Glue components that belong to the workflow as nodes and directed connections between them as edges.
sourcepub fn max_concurrent_runs(&self) -> Option<i32>
pub fn max_concurrent_runs(&self) -> Option<i32>
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.
sourcepub fn blueprint_details(&self) -> Option<&BlueprintDetails>
pub fn blueprint_details(&self) -> Option<&BlueprintDetails>
This structure indicates the details of the blueprint that this particular workflow is created from.