[][src]Struct rusoto_glue::WorkflowRun

pub struct WorkflowRun {
    pub completed_on: Option<f64>,
    pub error_message: Option<String>,
    pub graph: Option<WorkflowGraph>,
    pub name: Option<String>,
    pub previous_run_id: Option<String>,
    pub started_on: Option<f64>,
    pub statistics: Option<WorkflowRunStatistics>,
    pub status: Option<String>,
    pub workflow_run_id: Option<String>,
    pub workflow_run_properties: Option<HashMap<String, String>>,
}

A workflow run is an execution of a workflow providing all the runtime information.

Fields

completed_on: Option<f64>

The date and time when the workflow run completed.

error_message: Option<String>

This error message describes any error that may have occurred in starting the workflow run. Currently the only error message is "Concurrent runs exceeded for workflow: foo."

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.

name: Option<String>

Name of the workflow that was executed.

previous_run_id: Option<String>

The ID of the previous workflow run.

started_on: Option<f64>

The date and time when the workflow run was started.

statistics: Option<WorkflowRunStatistics>

The statistics of the run.

status: Option<String>

The status of the workflow run.

workflow_run_id: Option<String>

The ID of this workflow run.

workflow_run_properties: Option<HashMap<String, String>>

The workflow run properties which were set during the run.

Trait Implementations

impl Clone for WorkflowRun[src]

impl Debug for WorkflowRun[src]

impl Default for WorkflowRun[src]

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

impl PartialEq<WorkflowRun> for WorkflowRun[src]

impl StructuralPartialEq for WorkflowRun[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.