#[non_exhaustive]pub struct RuleExecutionResultBuilder { /* private fields */ }
Expand description
A builder for RuleExecutionResult
.
Implementations§
source§impl RuleExecutionResultBuilder
impl RuleExecutionResultBuilder
sourcepub fn external_execution_id(self, input: impl Into<String>) -> Self
pub fn external_execution_id(self, input: impl Into<String>) -> Self
The external ID for the rule execution.
sourcepub fn set_external_execution_id(self, input: Option<String>) -> Self
pub fn set_external_execution_id(self, input: Option<String>) -> Self
The external ID for the rule execution.
sourcepub fn get_external_execution_id(&self) -> &Option<String>
pub fn get_external_execution_id(&self) -> &Option<String>
The external ID for the rule execution.
sourcepub fn external_execution_summary(self, input: impl Into<String>) -> Self
pub fn external_execution_summary(self, input: impl Into<String>) -> Self
The external provider summary for the rule execution.
sourcepub fn set_external_execution_summary(self, input: Option<String>) -> Self
pub fn set_external_execution_summary(self, input: Option<String>) -> Self
The external provider summary for the rule execution.
sourcepub fn get_external_execution_summary(&self) -> &Option<String>
pub fn get_external_execution_summary(&self) -> &Option<String>
The external provider summary for the rule execution.
sourcepub fn external_execution_url(self, input: impl Into<String>) -> Self
pub fn external_execution_url(self, input: impl Into<String>) -> Self
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 set_external_execution_url(self, input: Option<String>) -> Self
pub fn set_external_execution_url(self, input: Option<String>) -> Self
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 get_external_execution_url(&self) -> &Option<String>
pub fn get_external_execution_url(&self) -> &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.
sourcepub fn error_details(self, input: ErrorDetails) -> Self
pub fn error_details(self, input: ErrorDetails) -> Self
Represents information about an error in CodePipeline.
sourcepub fn set_error_details(self, input: Option<ErrorDetails>) -> Self
pub fn set_error_details(self, input: Option<ErrorDetails>) -> Self
Represents information about an error in CodePipeline.
sourcepub fn get_error_details(&self) -> &Option<ErrorDetails>
pub fn get_error_details(&self) -> &Option<ErrorDetails>
Represents information about an error in CodePipeline.
sourcepub fn build(self) -> RuleExecutionResult
pub fn build(self) -> RuleExecutionResult
Consumes the builder and constructs a RuleExecutionResult
.
Trait Implementations§
source§impl Clone for RuleExecutionResultBuilder
impl Clone for RuleExecutionResultBuilder
source§fn clone(&self) -> RuleExecutionResultBuilder
fn clone(&self) -> RuleExecutionResultBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RuleExecutionResultBuilder
impl Debug for RuleExecutionResultBuilder
source§impl Default for RuleExecutionResultBuilder
impl Default for RuleExecutionResultBuilder
source§fn default() -> RuleExecutionResultBuilder
fn default() -> RuleExecutionResultBuilder
impl StructuralPartialEq for RuleExecutionResultBuilder
Auto Trait Implementations§
impl Freeze for RuleExecutionResultBuilder
impl RefUnwindSafe for RuleExecutionResultBuilder
impl Send for RuleExecutionResultBuilder
impl Sync for RuleExecutionResultBuilder
impl Unpin for RuleExecutionResultBuilder
impl UnwindSafe for RuleExecutionResultBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
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>
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>
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 more