Struct aws_sdk_codepipeline::model::ActionExecutionDetail
source · [−]#[non_exhaustive]pub struct ActionExecutionDetail { /* private fields */ }
Expand description
Returns information about an execution of an action, including the action execution ID, and the name, version, and timing of the action.
Implementations
sourceimpl ActionExecutionDetail
impl ActionExecutionDetail
sourcepub fn pipeline_execution_id(&self) -> Option<&str>
pub fn pipeline_execution_id(&self) -> Option<&str>
The pipeline execution ID for the action execution.
sourcepub fn action_execution_id(&self) -> Option<&str>
pub fn action_execution_id(&self) -> Option<&str>
The action execution ID.
sourcepub fn pipeline_version(&self) -> Option<i32>
pub fn pipeline_version(&self) -> Option<i32>
The version of the pipeline where the action was run.
sourcepub fn stage_name(&self) -> Option<&str>
pub fn stage_name(&self) -> Option<&str>
The name of the stage that contains the action.
sourcepub fn action_name(&self) -> Option<&str>
pub fn action_name(&self) -> Option<&str>
The name of the action.
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The start time of the action execution.
sourcepub fn last_update_time(&self) -> Option<&DateTime>
pub fn last_update_time(&self) -> Option<&DateTime>
The last update time of the action execution.
sourcepub fn status(&self) -> Option<&ActionExecutionStatus>
pub fn status(&self) -> Option<&ActionExecutionStatus>
The status of the action execution. Status categories are InProgress
, Succeeded
, and Failed
.
sourcepub fn input(&self) -> Option<&ActionExecutionInput>
pub fn input(&self) -> Option<&ActionExecutionInput>
Input details for the action execution, such as role ARN, Region, and input artifacts.
sourcepub fn output(&self) -> Option<&ActionExecutionOutput>
pub fn output(&self) -> Option<&ActionExecutionOutput>
Output details for the action execution, such as the action execution result.
sourceimpl ActionExecutionDetail
impl ActionExecutionDetail
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ActionExecutionDetail
.
Trait Implementations
sourceimpl Clone for ActionExecutionDetail
impl Clone for ActionExecutionDetail
sourcefn clone(&self) -> ActionExecutionDetail
fn clone(&self) -> ActionExecutionDetail
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ActionExecutionDetail
impl Debug for ActionExecutionDetail
sourceimpl PartialEq<ActionExecutionDetail> for ActionExecutionDetail
impl PartialEq<ActionExecutionDetail> for ActionExecutionDetail
sourcefn eq(&self, other: &ActionExecutionDetail) -> bool
fn eq(&self, other: &ActionExecutionDetail) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl StructuralPartialEq for ActionExecutionDetail
Auto Trait Implementations
impl RefUnwindSafe for ActionExecutionDetail
impl Send for ActionExecutionDetail
impl Sync for ActionExecutionDetail
impl Unpin for ActionExecutionDetail
impl UnwindSafe for ActionExecutionDetail
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more