Struct aws_sdk_glue::model::WorkflowRunStatistics
source · #[non_exhaustive]pub struct WorkflowRunStatistics { /* private fields */ }Expand description
Workflow run statistics provides statistics about the workflow run.
Implementations§
source§impl WorkflowRunStatistics
impl WorkflowRunStatistics
sourcepub fn total_actions(&self) -> i32
pub fn total_actions(&self) -> i32
Total number of Actions in the workflow run.
sourcepub fn timeout_actions(&self) -> i32
pub fn timeout_actions(&self) -> i32
Total number of Actions that timed out.
sourcepub fn failed_actions(&self) -> i32
pub fn failed_actions(&self) -> i32
Total number of Actions that have failed.
sourcepub fn stopped_actions(&self) -> i32
pub fn stopped_actions(&self) -> i32
Total number of Actions that have stopped.
sourcepub fn succeeded_actions(&self) -> i32
pub fn succeeded_actions(&self) -> i32
Total number of Actions that have succeeded.
sourcepub fn running_actions(&self) -> i32
pub fn running_actions(&self) -> i32
Total number Actions in running state.
sourcepub fn errored_actions(&self) -> i32
pub fn errored_actions(&self) -> i32
Indicates the count of job runs in the ERROR state in the workflow run.
sourcepub fn waiting_actions(&self) -> i32
pub fn waiting_actions(&self) -> i32
Indicates the count of job runs in WAITING state in the workflow run.
source§impl WorkflowRunStatistics
impl WorkflowRunStatistics
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture WorkflowRunStatistics.
Trait Implementations§
source§impl Clone for WorkflowRunStatistics
impl Clone for WorkflowRunStatistics
source§fn clone(&self) -> WorkflowRunStatistics
fn clone(&self) -> WorkflowRunStatistics
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for WorkflowRunStatistics
impl Debug for WorkflowRunStatistics
source§impl PartialEq<WorkflowRunStatistics> for WorkflowRunStatistics
impl PartialEq<WorkflowRunStatistics> for WorkflowRunStatistics
source§fn eq(&self, other: &WorkflowRunStatistics) -> bool
fn eq(&self, other: &WorkflowRunStatistics) -> bool
This method tests for
self and other values to be equal, and is used
by ==.