Struct aws_sdk_codepipeline::model::ActionExecutionDetail [−][src]
#[non_exhaustive]pub struct ActionExecutionDetail {
pub pipeline_execution_id: Option<String>,
pub action_execution_id: Option<String>,
pub pipeline_version: Option<i32>,
pub stage_name: Option<String>,
pub action_name: Option<String>,
pub start_time: Option<DateTime>,
pub last_update_time: Option<DateTime>,
pub status: Option<ActionExecutionStatus>,
pub input: Option<ActionExecutionInput>,
pub output: Option<ActionExecutionOutput>,
}
Expand description
Returns information about an execution of an action, including the action execution ID, and the name, version, and timing of the 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.pipeline_execution_id: Option<String>
The pipeline execution ID for the action execution.
action_execution_id: Option<String>
The action execution ID.
pipeline_version: Option<i32>
The version of the pipeline where the action was run.
stage_name: Option<String>
The name of the stage that contains the action.
action_name: Option<String>
The name of the action.
start_time: Option<DateTime>
The start time of the action execution.
last_update_time: Option<DateTime>
The last update time of the action execution.
status: Option<ActionExecutionStatus>
The status of the action execution. Status categories are InProgress
, Succeeded
, and Failed
.
input: Option<ActionExecutionInput>
Input details for the action execution, such as role ARN, Region, and input artifacts.
output: Option<ActionExecutionOutput>
Output details for the action execution, such as the action execution result.
Implementations
The pipeline execution ID for the action execution.
The action execution ID.
The version of the pipeline where the action was run.
The name of the stage that contains the action.
The name of the action.
The start time of the action execution.
The last update time of the action execution.
The status of the action execution. Status categories are InProgress
, Succeeded
, and Failed
.
Input details for the action execution, such as role ARN, Region, and input artifacts.
Output details for the action execution, such as the action execution result.
Creates a new builder-style object to manufacture ActionExecutionDetail
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 ActionExecutionDetail
impl Send for ActionExecutionDetail
impl Sync for ActionExecutionDetail
impl Unpin for ActionExecutionDetail
impl UnwindSafe for ActionExecutionDetail
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