Struct aws_sdk_codepipeline::types::RuleExecutionResult
source · #[non_exhaustive]pub struct RuleExecutionResult {
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
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 external ID for the rule execution.
external_execution_summary: Option<String>
The external provider summary for the rule 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 rule.
error_details: Option<ErrorDetails>
Represents information about an error in CodePipeline.
Implementations§
source§impl RuleExecutionResult
impl RuleExecutionResult
sourcepub fn external_execution_id(&self) -> Option<&str>
pub fn external_execution_id(&self) -> Option<&str>
The external ID for the rule execution.
sourcepub fn external_execution_summary(&self) -> Option<&str>
pub fn external_execution_summary(&self) -> Option<&str>
The external provider summary for the rule 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 rule.
sourcepub fn error_details(&self) -> Option<&ErrorDetails>
pub fn error_details(&self) -> Option<&ErrorDetails>
Represents information about an error in CodePipeline.
source§impl RuleExecutionResult
impl RuleExecutionResult
sourcepub fn builder() -> RuleExecutionResultBuilder
pub fn builder() -> RuleExecutionResultBuilder
Creates a new builder-style object to manufacture RuleExecutionResult
.
Trait Implementations§
source§impl Clone for RuleExecutionResult
impl Clone for RuleExecutionResult
source§fn clone(&self) -> RuleExecutionResult
fn clone(&self) -> RuleExecutionResult
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 RuleExecutionResult
impl Debug for RuleExecutionResult
source§impl PartialEq for RuleExecutionResult
impl PartialEq for RuleExecutionResult
impl StructuralPartialEq for RuleExecutionResult
Auto Trait Implementations§
impl Freeze for RuleExecutionResult
impl RefUnwindSafe for RuleExecutionResult
impl Send for RuleExecutionResult
impl Sync for RuleExecutionResult
impl Unpin for RuleExecutionResult
impl UnwindSafe for RuleExecutionResult
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.