listMeetingTags method

Future<ListMeetingTagsResponse> listMeetingTags({
  1. required String meetingId,
})

Lists the tags applied to an Amazon Chime SDK meeting resource.

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<ListMeetingTagsResponse> listMeetingTags({
  required String meetingId,
}) async {
  ArgumentError.checkNotNull(meetingId, 'meetingId');
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/meetings/${Uri.encodeComponent(meetingId)}/tags',
    exceptionFnMap: _exceptionFns,
  );
  return ListMeetingTagsResponse.fromJson(response);
}