pub enum MigrateWorkspaceError {
AccessDenied(String),
InvalidParameterValues(String),
OperationInProgress(String),
OperationNotSupported(String),
ResourceNotFound(String),
ResourceUnavailable(String),
}Expand description
Errors returned by MigrateWorkspace
Variants§
AccessDenied(String)
The user is not authorized to access a resource.
InvalidParameterValues(String)
One or more parameter values are not valid.
OperationInProgress(String)
The properties of this WorkSpace are currently being modified. Try again in a moment.
OperationNotSupported(String)
This operation is not supported.
ResourceNotFound(String)
The resource could not be found.
The specified resource is not available.
Implementations§
Source§impl MigrateWorkspaceError
impl MigrateWorkspaceError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<MigrateWorkspaceError>
Trait Implementations§
Source§impl Debug for MigrateWorkspaceError
impl Debug for MigrateWorkspaceError
Source§impl Display for MigrateWorkspaceError
impl Display for MigrateWorkspaceError
Source§impl Error for MigrateWorkspaceError
impl Error for MigrateWorkspaceError
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 MigrateWorkspaceError
impl PartialEq for MigrateWorkspaceError
impl StructuralPartialEq for MigrateWorkspaceError
Auto Trait Implementations§
impl Freeze for MigrateWorkspaceError
impl RefUnwindSafe for MigrateWorkspaceError
impl Send for MigrateWorkspaceError
impl Sync for MigrateWorkspaceError
impl Unpin for MigrateWorkspaceError
impl UnwindSafe for MigrateWorkspaceError
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