Struct aws_sdk_codepipeline::model::ActionExecution
source · [−]#[non_exhaustive]pub struct ActionExecution { /* private fields */ }
Expand description
Represents information about the run of an action.
Implementations
sourceimpl ActionExecution
impl ActionExecution
sourcepub fn action_execution_id(&self) -> Option<&str>
pub fn action_execution_id(&self) -> Option<&str>
ID of the workflow action execution in the current stage. Use the GetPipelineState
action to retrieve the current action execution details of the current stage.
For older executions, this field might be empty. The action execution ID is available for executions run on or after March 2020.
sourcepub fn status(&self) -> Option<&ActionExecutionStatus>
pub fn status(&self) -> Option<&ActionExecutionStatus>
The status of the action, or for a completed action, the last status of the action.
sourcepub fn last_status_change(&self) -> Option<&DateTime>
pub fn last_status_change(&self) -> Option<&DateTime>
The last status change of the action.
sourcepub fn token(&self) -> Option<&str>
pub fn token(&self) -> Option<&str>
The system-generated token used to identify a unique approval request. The token for each open approval request can be obtained using the GetPipelineState
command. It is used to validate that the approval request corresponding to this token is still valid.
sourcepub fn last_updated_by(&self) -> Option<&str>
pub fn last_updated_by(&self) -> Option<&str>
The ARN of the user who last changed the pipeline.
sourcepub fn external_execution_id(&self) -> Option<&str>
pub fn external_execution_id(&self) -> Option<&str>
The external ID of the run of the action.
sourcepub fn external_execution_url(&self) -> Option<&str>
pub fn external_execution_url(&self) -> Option<&str>
The URL of a resource external to AWS that is used when running the action (for example, an external repository URL).
sourcepub fn percent_complete(&self) -> Option<i32>
pub fn percent_complete(&self) -> Option<i32>
A percentage of completeness of the action as it runs.
sourcepub fn error_details(&self) -> Option<&ErrorDetails>
pub fn error_details(&self) -> Option<&ErrorDetails>
The details of an error returned by a URL external to AWS.
sourceimpl ActionExecution
impl ActionExecution
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ActionExecution
.
Trait Implementations
sourceimpl Clone for ActionExecution
impl Clone for ActionExecution
sourcefn clone(&self) -> ActionExecution
fn clone(&self) -> ActionExecution
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more