pub enum DeleteGameSessionQueueError {
InternalService(String),
InvalidRequest(String),
NotFound(String),
TaggingFailed(String),
Unauthorized(String),
}Expand description
Errors returned by DeleteGameSessionQueue
Variants§
InternalService(String)
The service encountered an unrecoverable internal failure while processing the request. Clients can retry such requests immediately or after a waiting period.
InvalidRequest(String)
One or more parameter values in the request are invalid. Correct the invalid parameter values before retrying.
NotFound(String)
A service resource associated with the request could not be found. Clients should not retry such requests.
TaggingFailed(String)
The requested tagging operation did not succeed. This may be due to invalid tag format or the maximum tag limit may have been exceeded. Resolve the issue before retrying.
The client failed authentication. Clients should not retry such requests.
Implementations§
Source§impl DeleteGameSessionQueueError
impl DeleteGameSessionQueueError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteGameSessionQueueError>
Trait Implementations§
Source§impl Debug for DeleteGameSessionQueueError
impl Debug for DeleteGameSessionQueueError
Source§impl Error for DeleteGameSessionQueueError
impl Error for DeleteGameSessionQueueError
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 DeleteGameSessionQueueError
Auto Trait Implementations§
impl Freeze for DeleteGameSessionQueueError
impl RefUnwindSafe for DeleteGameSessionQueueError
impl Send for DeleteGameSessionQueueError
impl Sync for DeleteGameSessionQueueError
impl Unpin for DeleteGameSessionQueueError
impl UnwindSafe for DeleteGameSessionQueueError
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