Struct aws_sdk_codepipeline::model::ActionExecution
source · [−]#[non_exhaustive]pub struct ActionExecution {
pub action_execution_id: Option<String>,
pub status: Option<ActionExecutionStatus>,
pub summary: Option<String>,
pub last_status_change: Option<DateTime>,
pub token: Option<String>,
pub last_updated_by: Option<String>,
pub external_execution_id: Option<String>,
pub external_execution_url: Option<String>,
pub percent_complete: Option<i32>,
pub error_details: Option<ErrorDetails>,
}
Expand description
Represents information about the run of an action.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.action_execution_id: Option<String>
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.
status: Option<ActionExecutionStatus>
The status of the action, or for a completed action, the last status of the action.
summary: Option<String>
A summary of the run of the action.
last_status_change: Option<DateTime>
The last status change of the action.
token: Option<String>
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.
last_updated_by: Option<String>
The ARN of the user who last changed the pipeline.
external_execution_id: Option<String>
The external ID of the run of the action.
external_execution_url: Option<String>
The URL of a resource external to AWS that is used when running the action (for example, an external repository URL).
percent_complete: Option<i32>
A percentage of completeness of the action as it runs.
error_details: Option<ErrorDetails>
The details of an error returned by a URL external to AWS.
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
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 ActionExecution
impl Debug for ActionExecution
sourceimpl PartialEq<ActionExecution> for ActionExecution
impl PartialEq<ActionExecution> for ActionExecution
sourcefn eq(&self, other: &ActionExecution) -> bool
fn eq(&self, other: &ActionExecution) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ActionExecution) -> bool
fn ne(&self, other: &ActionExecution) -> bool
This method tests for !=
.
impl StructuralPartialEq for ActionExecution
Auto Trait Implementations
impl RefUnwindSafe for ActionExecution
impl Send for ActionExecution
impl Sync for ActionExecution
impl Unpin for ActionExecution
impl UnwindSafe for ActionExecution
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