#[non_exhaustive]pub struct RetryStageExecutionInput { /* private fields */ }
Expand description
Represents the input of a RetryStageExecution
action.
Implementations
sourceimpl RetryStageExecutionInput
impl RetryStageExecutionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RetryStageExecution, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RetryStageExecution, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<RetryStageExecution
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RetryStageExecutionInput
.
sourceimpl RetryStageExecutionInput
impl RetryStageExecutionInput
sourcepub fn pipeline_name(&self) -> Option<&str>
pub fn pipeline_name(&self) -> Option<&str>
The name of the pipeline that contains the failed stage.
sourcepub fn stage_name(&self) -> Option<&str>
pub fn stage_name(&self) -> Option<&str>
The name of the failed stage to be retried.
sourcepub fn pipeline_execution_id(&self) -> Option<&str>
pub fn pipeline_execution_id(&self) -> Option<&str>
The ID of the pipeline execution in the failed stage to be retried. Use the GetPipelineState
action to retrieve the current pipelineExecutionId of the failed stage
sourcepub fn retry_mode(&self) -> Option<&StageRetryMode>
pub fn retry_mode(&self) -> Option<&StageRetryMode>
The scope of the retry attempt. Currently, the only supported value is FAILED_ACTIONS.
Trait Implementations
sourceimpl Clone for RetryStageExecutionInput
impl Clone for RetryStageExecutionInput
sourcefn clone(&self) -> RetryStageExecutionInput
fn clone(&self) -> RetryStageExecutionInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for RetryStageExecutionInput
impl Debug for RetryStageExecutionInput
sourceimpl PartialEq<RetryStageExecutionInput> for RetryStageExecutionInput
impl PartialEq<RetryStageExecutionInput> for RetryStageExecutionInput
sourcefn eq(&self, other: &RetryStageExecutionInput) -> bool
fn eq(&self, other: &RetryStageExecutionInput) -> bool
impl StructuralPartialEq for RetryStageExecutionInput
Auto Trait Implementations
impl RefUnwindSafe for RetryStageExecutionInput
impl Send for RetryStageExecutionInput
impl Sync for RetryStageExecutionInput
impl Unpin for RetryStageExecutionInput
impl UnwindSafe for RetryStageExecutionInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more