pub enum StopPipelineExecutionError {
DuplicatedStopRequest(String),
PipelineExecutionNotStoppable(String),
PipelineNotFound(String),
}
Expand description
Errors returned by StopPipelineExecution
Variants§
DuplicatedStopRequest(String)
The pipeline execution is already in a Stopping
state. If you already chose to stop and wait, you cannot make that request again. You can choose to stop and abandon now, but be aware that this option can lead to failed tasks or out of sequence tasks. If you already chose to stop and abandon, you cannot make that request again.
PipelineExecutionNotStoppable(String)
Unable to stop the pipeline execution. The execution might already be in a Stopped
state, or it might no longer be in progress.
PipelineNotFound(String)
The pipeline was specified in an invalid format or cannot be found.
Implementations§
Source§impl StopPipelineExecutionError
impl StopPipelineExecutionError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<StopPipelineExecutionError>
Trait Implementations§
Source§impl Debug for StopPipelineExecutionError
impl Debug for StopPipelineExecutionError
Source§impl Display for StopPipelineExecutionError
impl Display for StopPipelineExecutionError
Source§impl Error for StopPipelineExecutionError
impl Error for StopPipelineExecutionError
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()
impl StructuralPartialEq for StopPipelineExecutionError
Auto Trait Implementations§
impl Freeze for StopPipelineExecutionError
impl RefUnwindSafe for StopPipelineExecutionError
impl Send for StopPipelineExecutionError
impl Sync for StopPipelineExecutionError
impl Unpin for StopPipelineExecutionError
impl UnwindSafe for StopPipelineExecutionError
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