Struct aws_sdk_codepipeline::types::ActionExecutionResult
source · #[non_exhaustive]pub struct ActionExecutionResult {
pub external_execution_id: Option<String>,
pub external_execution_summary: Option<String>,
pub external_execution_url: Option<String>,
pub error_details: Option<ErrorDetails>,
}
Expand description
Execution result information, such as the external execution ID.
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.external_execution_id: Option<String>
The action provider's external ID for the action execution.
external_execution_summary: Option<String>
The action provider's summary for the action execution.
external_execution_url: Option<String>
The deepest external link to the external resource (for example, a repository URL or deployment endpoint) that is used when running the action.
error_details: Option<ErrorDetails>
Represents information about an error in CodePipeline.
Implementations§
source§impl ActionExecutionResult
impl ActionExecutionResult
sourcepub fn external_execution_id(&self) -> Option<&str>
pub fn external_execution_id(&self) -> Option<&str>
The action provider's external ID for the action execution.
sourcepub fn external_execution_summary(&self) -> Option<&str>
pub fn external_execution_summary(&self) -> Option<&str>
The action provider's summary for the action execution.
sourcepub fn external_execution_url(&self) -> Option<&str>
pub fn external_execution_url(&self) -> Option<&str>
The deepest external link to the external resource (for example, a repository URL or deployment endpoint) that is used when running the action.
sourcepub fn error_details(&self) -> Option<&ErrorDetails>
pub fn error_details(&self) -> Option<&ErrorDetails>
Represents information about an error in CodePipeline.
source§impl ActionExecutionResult
impl ActionExecutionResult
sourcepub fn builder() -> ActionExecutionResultBuilder
pub fn builder() -> ActionExecutionResultBuilder
Creates a new builder-style object to manufacture ActionExecutionResult
.
Trait Implementations§
source§impl Clone for ActionExecutionResult
impl Clone for ActionExecutionResult
source§fn clone(&self) -> ActionExecutionResult
fn clone(&self) -> ActionExecutionResult
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ActionExecutionResult
impl Debug for ActionExecutionResult
source§impl PartialEq for ActionExecutionResult
impl PartialEq for ActionExecutionResult
source§fn eq(&self, other: &ActionExecutionResult) -> bool
fn eq(&self, other: &ActionExecutionResult) -> bool
self
and other
values to be equal, and is used
by ==
.