#[non_exhaustive]
pub enum ListGameServerGroupsErrorKind {
InternalServiceException(InternalServiceException),
InvalidRequestException(InvalidRequestException),
UnauthorizedException(UnauthorizedException),
Unhandled(Box<dyn Error + Send + Sync + 'static>),
}Expand description
Types of errors that can occur for the ListGameServerGroups operation.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
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.
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 ListGameServerGroupsErrorKind
impl Send for ListGameServerGroupsErrorKind
impl Sync for ListGameServerGroupsErrorKind
impl Unpin for ListGameServerGroupsErrorKind
impl !UnwindSafe for ListGameServerGroupsErrorKind
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