[][src]Struct rusoto_glue::Workflow

pub struct Workflow {
    pub created_on: Option<f64>,
    pub default_run_properties: Option<HashMap<String, String>>,
    pub description: Option<String>,
    pub graph: Option<WorkflowGraph>,
    pub last_modified_on: Option<f64>,
    pub last_run: Option<WorkflowRun>,
    pub max_concurrent_runs: Option<i64>,
    pub name: Option<String>,
}

A workflow represents a flow in which AWS Glue components should be executed to complete a logical task.

Fields

created_on: Option<f64>

The date and time when the workflow was created.

default_run_properties: Option<HashMap<String, String>>

A collection of properties to be used as part of each execution of the workflow.

description: Option<String>

A description of the workflow.

graph: Option<WorkflowGraph>

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

last_modified_on: Option<f64>

The date and time when the workflow was last modified.

last_run: Option<WorkflowRun>

The information about the last execution of the workflow.

max_concurrent_runs: Option<i64>

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.

name: Option<String>

The name of the workflow representing the flow.

Trait Implementations

impl Clone for Workflow[src]

impl Debug for Workflow[src]

impl Default for Workflow[src]

impl<'de> Deserialize<'de> for Workflow[src]

impl PartialEq<Workflow> for Workflow[src]

impl StructuralPartialEq for Workflow[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.