pub enum ModifyWorkspacePropertiesError {
AccessDenied(String),
InvalidParameterValues(String),
InvalidResourceState(String),
OperationInProgress(String),
ResourceNotFound(String),
ResourceUnavailable(String),
UnsupportedWorkspaceConfiguration(String),
}Expand description
Errors returned by ModifyWorkspaceProperties
Variants§
AccessDenied(String)
The user is not authorized to access a resource.
InvalidParameterValues(String)
One or more parameter values are not valid.
InvalidResourceState(String)
The state of the resource is not valid for this operation.
OperationInProgress(String)
The properties of this WorkSpace are currently being modified. Try again in a moment.
ResourceNotFound(String)
The resource could not be found.
The specified resource is not available.
UnsupportedWorkspaceConfiguration(String)
The configuration of this WorkSpace is not supported for this operation. For more information, see Required Configuration and Service Components for WorkSpaces .
Implementations§
Trait Implementations§
Source§impl Error for ModifyWorkspacePropertiesError
impl Error for ModifyWorkspacePropertiesError
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 ModifyWorkspacePropertiesError
impl PartialEq for ModifyWorkspacePropertiesError
Source§fn eq(&self, other: &ModifyWorkspacePropertiesError) -> bool
fn eq(&self, other: &ModifyWorkspacePropertiesError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ModifyWorkspacePropertiesError
Auto Trait Implementations§
impl Freeze for ModifyWorkspacePropertiesError
impl RefUnwindSafe for ModifyWorkspacePropertiesError
impl Send for ModifyWorkspacePropertiesError
impl Sync for ModifyWorkspacePropertiesError
impl Unpin for ModifyWorkspacePropertiesError
impl UnwindSafe for ModifyWorkspacePropertiesError
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