pub enum CreateGameServerGroupError {
Conflict(String),
InternalService(String),
InvalidRequest(String),
LimitExceeded(String),
Unauthorized(String),
}Expand description
Errors returned by CreateGameServerGroup
Variants§
Conflict(String)
The requested operation would cause a conflict with the current state of a service resource associated with the request. Resolve the conflict before retrying this request.
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.
LimitExceeded(String)
The requested operation would cause the resource to exceed the allowed service limit. Resolve the issue before retrying.
The client failed authentication. Clients should not retry such requests.
Implementations§
Source§impl CreateGameServerGroupError
impl CreateGameServerGroupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateGameServerGroupError>
Trait Implementations§
Source§impl Debug for CreateGameServerGroupError
impl Debug for CreateGameServerGroupError
Source§impl Display for CreateGameServerGroupError
impl Display for CreateGameServerGroupError
Source§impl Error for CreateGameServerGroupError
impl Error for CreateGameServerGroupError
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 CreateGameServerGroupError
Auto Trait Implementations§
impl Freeze for CreateGameServerGroupError
impl RefUnwindSafe for CreateGameServerGroupError
impl Send for CreateGameServerGroupError
impl Sync for CreateGameServerGroupError
impl Unpin for CreateGameServerGroupError
impl UnwindSafe for CreateGameServerGroupError
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