getRoom method

Future<GetRoomResponse> getRoom({
  1. required String accountId,
  2. required String roomId,
})

Retrieves room details, such as the room name, for a room in an Amazon Chime Enterprise account.

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

Parameter accountId : The Amazon Chime account ID.

Parameter roomId : The room ID.

Implementation

Future<GetRoomResponse> getRoom({
  required String accountId,
  required String roomId,
}) async {
  ArgumentError.checkNotNull(accountId, 'accountId');
  ArgumentError.checkNotNull(roomId, 'roomId');
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/accounts/${Uri.encodeComponent(accountId)}/rooms/${Uri.encodeComponent(roomId)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetRoomResponse.fromJson(response);
}