#[non_exhaustive]
pub enum ClaimGameServerErrorKind {
ConflictException(ConflictException),
InternalServiceException(InternalServiceException),
InvalidRequestException(InvalidRequestException),
NotFoundException(NotFoundException),
OutOfCapacityException(OutOfCapacityException),
UnauthorizedException(UnauthorizedException),
Unhandled(Box<dyn Error + Send + Sync + 'static>),
}Expand description
Types of errors that can occur for the ClaimGameServer operation.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
ConflictException(ConflictException)
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.
InternalServiceException(InternalServiceException)
The service encountered an unrecoverable internal failure while processing the request. Clients can retry such requests immediately or after a waiting period.
InvalidRequestException(InvalidRequestException)
One or more parameter values in the request are invalid. Correct the invalid parameter values before retrying.
NotFoundException(NotFoundException)
A service resource associated with the request could not be found. Clients should not retry such requests.
OutOfCapacityException(OutOfCapacityException)
The specified game server group has no available game servers to fulfill a ClaimGameServer request. Clients can retry such requests immediately or after a waiting period.
UnauthorizedException(UnauthorizedException)
The client failed authentication. Clients should not retry such requests.
Unhandled(Box<dyn Error + Send + Sync + 'static>)
An unexpected error, e.g. invalid JSON returned by the service or an unknown error code
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for ClaimGameServerErrorKind
impl Send for ClaimGameServerErrorKind
impl Sync for ClaimGameServerErrorKind
impl Unpin for ClaimGameServerErrorKind
impl !UnwindSafe for ClaimGameServerErrorKind
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more