MeetingSessionStatusCode

@objc
public enum MeetingSessionStatusCode : UInt32, CustomStringConvertible
  • ok

    Everything is OK so far.

    Declaration

    Swift

    case ok = 0
  • There was an internal server error related to audio. This may indicate some issue with the audio device, or an issue with the Amazon Chime SDK service itself.

    Declaration

    Swift

    case audioDisconnected = 9
  • Due to connection health a reconnect has been triggered.

    Declaration

    Swift

    case connectionHealthReconnect = 10
  • Network is not good enough for VoIP, AudioVideoObserver.audioSessionDidDrop() will be triggered, and there will be an automatic attempt of reconnecting. If the reconnecting is successful, audioSessionDidStart(reconnecting:) will be called with value of reconnecting as true.

    Declaration

    Swift

    case networkBecomePoor = 59
  • Chime SDK audio server hung up.

    Declaration

    Swift

    case audioServerHungup = 60
  • The attendee joined from another device.

    Declaration

    Swift

    case audioJoinedFromAnotherDevice = 61
  • There was an internal server error related to audio. This may indicate some issue with the audio device, or an issue with the Amazon Chime SDK service itself

    Declaration

    Swift

    case audioInternalServerError = 62
  • Authentication was rejected as the attendee information in MeetingSessionCredentials did not match that of an attendee created via chime::CreateAttendee. This error may imply an issue with your credential providing service, the client will not be allowed on this call.

    Declaration

    Swift

    case audioAuthenticationRejected = 63
  • The client can not join because the meeting is at capacity. The service supports up to 250 attendees.

    Declaration

    Swift

    case audioCallAtCapacity = 64
  • There was an internal server error related to audio. This may indicate some issue with the audio device, or an issue with the Amazon Chime SDK service itself.

    Declaration

    Swift

    case audioServiceUnavailable = 65
  • The attendee should explicitly switch itself from joined with audio to checked-in.

    Declaration

    Swift

    case audioDisconnectAudio = 69
  • The attendee attempted to join a meeting that has already ended. See this FAQ for more information. The end user may want to be notified of this type of error.

    Declaration

    Swift

    case audioCallEnded = 75
  • There was an internal server error related to video. This may indicate some issue with the video device, or an issue with the Amazon Chime SDK service itself.

    Declaration

    Swift

    case videoServiceUnavailable = 12
  • The meeting session is in unkown status.

    Declaration

    Swift

    case unknown = 78
  • The video client has tried to send video but was unable to do so due to capacity reached. However, the video client can still receive remote video streams.

    Declaration

    Swift

    case videoAtCapacityViewOnly = 206
  • Designated input device is not responding and timed out.

    Declaration

    Swift

    case audioInputDeviceNotResponding = 82
  • Designated output device is not responding and timed out.

    Declaration

    Swift

    case audioOutputDeviceNotResponding = 83
  • Declaration

    Swift

    public var description: String { get }