getAttendee method

Future<GetAttendeeResponse> getAttendee({
  1. required String attendeeId,
  2. required String meetingId,
})

Gets the Amazon Chime SDK attendee details for a specified meeting ID and attendee 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 attendeeId : The Amazon Chime SDK attendee ID.

Parameter meetingId : The Amazon Chime SDK meeting ID.

Implementation

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