pub enum CreateOutpostError {
AccessDenied(String),
Conflict(String),
InternalServer(String),
NotFound(String),
ServiceQuotaExceeded(String),
}Expand description
Errors returned by CreateOutpost
Variants§
AccessDenied(String)
You do not have permission to perform this operation.
Conflict(String)
Updating or deleting this resource can cause an inconsistent state.
InternalServer(String)
An internal error has occurred.
NotFound(String)
The specified request is not valid.
ServiceQuotaExceeded(String)
You have exceeded a service quota.
Implementations§
Source§impl CreateOutpostError
impl CreateOutpostError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateOutpostError>
Trait Implementations§
Source§impl Debug for CreateOutpostError
impl Debug for CreateOutpostError
Source§impl Display for CreateOutpostError
impl Display for CreateOutpostError
Source§impl Error for CreateOutpostError
impl Error for CreateOutpostError
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 CreateOutpostError
impl PartialEq for CreateOutpostError
impl StructuralPartialEq for CreateOutpostError
Auto Trait Implementations§
impl Freeze for CreateOutpostError
impl RefUnwindSafe for CreateOutpostError
impl Send for CreateOutpostError
impl Sync for CreateOutpostError
impl Unpin for CreateOutpostError
impl UnwindSafe for CreateOutpostError
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