[][src]Struct rusoto_codepipeline::ActionExecutionDetail

pub struct ActionExecutionDetail {
    pub action_execution_id: Option<String>,
    pub action_name: Option<String>,
    pub input: Option<ActionExecutionInput>,
    pub last_update_time: Option<f64>,
    pub output: Option<ActionExecutionOutput>,
    pub pipeline_execution_id: Option<String>,
    pub pipeline_version: Option<i64>,
    pub stage_name: Option<String>,
    pub start_time: Option<f64>,
    pub status: Option<String>,
}

Returns information about an execution of an action, including the action execution ID, and the name, version, and timing of the action.

Fields

action_execution_id: Option<String>

The action execution ID.

action_name: Option<String>

The name of the action.

input: Option<ActionExecutionInput>

Input details for the action execution, such as role ARN, Region, and input artifacts.

last_update_time: Option<f64>

The last update time of the action execution.

output: Option<ActionExecutionOutput>

Output details for the action execution, such as the action execution result.

pipeline_execution_id: Option<String>

The pipeline execution ID for the action execution.

pipeline_version: Option<i64>

The version of the pipeline where the action was run.

stage_name: Option<String>

The name of the stage that contains the action.

start_time: Option<f64>

The start time of the action execution.

status: Option<String>

The status of the action execution. Status categories are InProgress, Succeeded, and Failed.

Trait Implementations

impl Clone for ActionExecutionDetail[src]

impl Debug for ActionExecutionDetail[src]

impl Default for ActionExecutionDetail[src]

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

impl PartialEq<ActionExecutionDetail> for ActionExecutionDetail[src]

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