Struct rusoto_codepipeline::ExecutionDetails[][src]

pub struct ExecutionDetails {
    pub external_execution_id: Option<String>,
    pub percent_complete: Option<i64>,
    pub summary: Option<String>,
}

The details of the actions taken and results produced on an artifact as it passes through stages in the pipeline.

Fields

The system-generated unique ID of this action used to identify this job worker in any external systems, such as AWS CodeDeploy.

The percentage of work completed on the action, represented on a scale of zero to one hundred percent.

The summary of the current status of the actions.

Trait Implementations

impl Default for ExecutionDetails
[src]

Returns the "default value" for a type. Read more

impl Debug for ExecutionDetails
[src]

Formats the value using the given formatter. Read more

impl Clone for ExecutionDetails
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ExecutionDetails
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations