getMeeting method

Future<GetMeetingResponse> getMeeting({
  1. required String meetingId,
})

Gets the Amazon Chime SDK meeting details for the specified meeting ID. For more information about the Amazon Chime SDK, see Using the Amazon Chime SDK in the Amazon Chime Developer Guide.

May throw BadRequestException. May throw ForbiddenException. May throw NotFoundException. May throw ThrottledClientException. May throw UnauthorizedClientException. May throw ServiceUnavailableException. May throw ServiceFailureException.

Parameter meetingId : The Amazon Chime SDK meeting ID.

Implementation

Future<GetMeetingResponse> getMeeting({
  required String meetingId,
}) async {
  ArgumentError.checkNotNull(meetingId, 'meetingId');
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/meetings/${Uri.encodeComponent(meetingId)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetMeetingResponse.fromJson(response);
}