pub enum DeleteResourceDataSyncError {
InternalServerError(String),
ResourceDataSyncInvalidConfiguration(String),
ResourceDataSyncNotFound(String),
}Expand description
Errors returned by DeleteResourceDataSync
Variants§
InternalServerError(String)
An error occurred on the server side.
ResourceDataSyncInvalidConfiguration(String)
The specified sync configuration is invalid.
ResourceDataSyncNotFound(String)
The specified sync name was not found.
Implementations§
Source§impl DeleteResourceDataSyncError
impl DeleteResourceDataSyncError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteResourceDataSyncError>
Trait Implementations§
Source§impl Debug for DeleteResourceDataSyncError
impl Debug for DeleteResourceDataSyncError
Source§impl Error for DeleteResourceDataSyncError
impl Error for DeleteResourceDataSyncError
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 DeleteResourceDataSyncError
Auto Trait Implementations§
impl Freeze for DeleteResourceDataSyncError
impl RefUnwindSafe for DeleteResourceDataSyncError
impl Send for DeleteResourceDataSyncError
impl Sync for DeleteResourceDataSyncError
impl Unpin for DeleteResourceDataSyncError
impl UnwindSafe for DeleteResourceDataSyncError
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