pub enum RetryStageExecutionError {
NotLatestPipelineExecution(String),
PipelineNotFound(String),
StageNotFound(String),
StageNotRetryable(String),
}
Expand description
Errors returned by RetryStageExecution
Variants§
NotLatestPipelineExecution(String)
The stage has failed in a later run of the pipeline and the pipelineExecutionId associated with the request is out of date.
PipelineNotFound(String)
The pipeline was specified in an invalid format or cannot be found.
StageNotFound(String)
The stage was specified in an invalid format or cannot be found.
StageNotRetryable(String)
Unable to retry. The pipeline structure or stage state might have changed while actions awaited retry, or the stage contains no failed actions.
Implementations§
Source§impl RetryStageExecutionError
impl RetryStageExecutionError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<RetryStageExecutionError>
Trait Implementations§
Source§impl Debug for RetryStageExecutionError
impl Debug for RetryStageExecutionError
Source§impl Display for RetryStageExecutionError
impl Display for RetryStageExecutionError
Source§impl Error for RetryStageExecutionError
impl Error for RetryStageExecutionError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for RetryStageExecutionError
impl PartialEq for RetryStageExecutionError
impl StructuralPartialEq for RetryStageExecutionError
Auto Trait Implementations§
impl Freeze for RetryStageExecutionError
impl RefUnwindSafe for RetryStageExecutionError
impl Send for RetryStageExecutionError
impl Sync for RetryStageExecutionError
impl Unpin for RetryStageExecutionError
impl UnwindSafe for RetryStageExecutionError
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