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§
source§impl 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.
source§impl ActionExecutionDetail
impl ActionExecutionDetail
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ActionExecutionDetail
.
Trait Implementations§
source§impl Clone for ActionExecutionDetail
impl Clone for ActionExecutionDetail
source§fn clone(&self) -> ActionExecutionDetail
fn clone(&self) -> ActionExecutionDetail
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 more