#[non_exhaustive]pub struct ActionExecutionResultBuilder { /* private fields */ }
Expand description
A builder for ActionExecutionResult
.
Implementations§
source§impl ActionExecutionResultBuilder
impl ActionExecutionResultBuilder
sourcepub fn external_execution_id(self, input: impl Into<String>) -> Self
pub fn external_execution_id(self, input: impl Into<String>) -> Self
The action provider's external ID for the action execution.
sourcepub fn set_external_execution_id(self, input: Option<String>) -> Self
pub fn set_external_execution_id(self, input: Option<String>) -> Self
The action provider's external ID for the action execution.
sourcepub fn get_external_execution_id(&self) -> &Option<String>
pub fn get_external_execution_id(&self) -> &Option<String>
The action provider's external ID for the action execution.
sourcepub fn external_execution_summary(self, input: impl Into<String>) -> Self
pub fn external_execution_summary(self, input: impl Into<String>) -> Self
The action provider's summary for the action execution.
sourcepub fn set_external_execution_summary(self, input: Option<String>) -> Self
pub fn set_external_execution_summary(self, input: Option<String>) -> Self
The action provider's summary for the action execution.
sourcepub fn get_external_execution_summary(&self) -> &Option<String>
pub fn get_external_execution_summary(&self) -> &Option<String>
The action provider's summary for the action 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 action.
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 action.
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 action.
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) -> ActionExecutionResult
pub fn build(self) -> ActionExecutionResult
Consumes the builder and constructs a ActionExecutionResult
.
Trait Implementations§
source§impl Clone for ActionExecutionResultBuilder
impl Clone for ActionExecutionResultBuilder
source§fn clone(&self) -> ActionExecutionResultBuilder
fn clone(&self) -> ActionExecutionResultBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ActionExecutionResultBuilder
impl Debug for ActionExecutionResultBuilder
source§impl Default for ActionExecutionResultBuilder
impl Default for ActionExecutionResultBuilder
source§fn default() -> ActionExecutionResultBuilder
fn default() -> ActionExecutionResultBuilder
source§impl PartialEq for ActionExecutionResultBuilder
impl PartialEq for ActionExecutionResultBuilder
source§fn eq(&self, other: &ActionExecutionResultBuilder) -> bool
fn eq(&self, other: &ActionExecutionResultBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ActionExecutionResultBuilder
Auto Trait Implementations§
impl Freeze for ActionExecutionResultBuilder
impl RefUnwindSafe for ActionExecutionResultBuilder
impl Send for ActionExecutionResultBuilder
impl Sync for ActionExecutionResultBuilder
impl Unpin for ActionExecutionResultBuilder
impl UnwindSafe for ActionExecutionResultBuilder
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