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>,
}
Expand description
Execution result information, such as the external execution ID.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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.
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.
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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ActionExecutionResult
impl Debug for ActionExecutionResult
source§impl PartialEq<ActionExecutionResult> for ActionExecutionResult
impl PartialEq<ActionExecutionResult> for ActionExecutionResult
source§fn eq(&self, other: &ActionExecutionResult) -> bool
fn eq(&self, other: &ActionExecutionResult) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ActionExecutionResult
Auto Trait Implementations§
impl RefUnwindSafe for ActionExecutionResult
impl Send for ActionExecutionResult
impl Sync for ActionExecutionResult
impl Unpin for ActionExecutionResult
impl UnwindSafe for ActionExecutionResult
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more