Struct aws_sdk_codepipeline::model::ActionExecution [−][src]
#[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
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.
The status of the action, or for a completed action, the last status of the action.
The last status change of the action.
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.
The ARN of the user who last changed the pipeline.
The external ID of the run of the action.
The URL of a resource external to AWS that is used when running the action (for example, an external repository URL).
A percentage of completeness of the action as it runs.
The details of an error returned by a URL external to AWS.
Creates a new builder-style object to manufacture ActionExecution
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more