pub enum CreateExportTaskError {
InvalidParameter(String),
LimitExceeded(String),
OperationAborted(String),
ResourceAlreadyExists(String),
ResourceNotFound(String),
ServiceUnavailable(String),
}Expand description
Errors returned by CreateExportTask
Variants§
InvalidParameter(String)
A parameter is specified incorrectly.
LimitExceeded(String)
You have reached the maximum number of resources that can be created.
OperationAborted(String)
Multiple requests to update the same resource were in conflict.
ResourceAlreadyExists(String)
The specified resource already exists.
ResourceNotFound(String)
The specified resource does not exist.
The service cannot complete the request.
Implementations§
Source§impl CreateExportTaskError
impl CreateExportTaskError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateExportTaskError>
Trait Implementations§
Source§impl Debug for CreateExportTaskError
impl Debug for CreateExportTaskError
Source§impl Display for CreateExportTaskError
impl Display for CreateExportTaskError
Source§impl Error for CreateExportTaskError
impl Error for CreateExportTaskError
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 CreateExportTaskError
impl PartialEq for CreateExportTaskError
impl StructuralPartialEq for CreateExportTaskError
Auto Trait Implementations§
impl Freeze for CreateExportTaskError
impl RefUnwindSafe for CreateExportTaskError
impl Send for CreateExportTaskError
impl Sync for CreateExportTaskError
impl Unpin for CreateExportTaskError
impl UnwindSafe for CreateExportTaskError
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