pub type GetIceServerConfigErrorKind = GetIceServerConfigError;
👎Deprecated: Operation *Error/*ErrorKind types were combined into a single *Error enum. The .kind field on *Error no longer exists and isn’t needed anymore (you can just match on the error directly since it’s an enum now).
Expand description

Do not use this.

Operation *Error/*ErrorKind types were combined into a single *Error enum. The .kind field on *Error no longer exists and isn’t needed anymore (you can just match on the error directly since it’s an enum now).

Aliased Type§

enum GetIceServerConfigErrorKind {
    ClientLimitExceededException(ClientLimitExceededException),
    InvalidArgumentException(InvalidArgumentException),
    InvalidClientException(InvalidClientException),
    NotAuthorizedException(NotAuthorizedException),
    ResourceNotFoundException(ResourceNotFoundException),
    SessionExpiredException(SessionExpiredException),
    Unhandled(Unhandled),
}

Variants§

§

ClientLimitExceededException(ClientLimitExceededException)

Your request was throttled because you have exceeded the limit of allowed client calls. Try making the call later.

§

InvalidArgumentException(InvalidArgumentException)

The value for this input parameter is invalid.

§

InvalidClientException(InvalidClientException)

The specified client is invalid.

§

NotAuthorizedException(NotAuthorizedException)

The caller is not authorized to perform this operation.

§

ResourceNotFoundException(ResourceNotFoundException)

The specified resource is not found.

§

SessionExpiredException(SessionExpiredException)

If the client session is expired. Once the client is connected, the session is valid for 45 minutes. Client should reconnect to the channel to continue sending/receiving messages.

§

Unhandled(Unhandled)

An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).