untagMeeting method

Future<void> untagMeeting({
  1. required String meetingId,
  2. required List<String> tagKeys,
})

Untags the specified tags from the specified Amazon Chime SDK meeting.

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

Parameter meetingId : The Amazon Chime SDK meeting ID.

Parameter tagKeys : The tag keys.

Implementation

Future<void> untagMeeting({
  required String meetingId,
  required List<String> tagKeys,
}) async {
  ArgumentError.checkNotNull(meetingId, 'meetingId');
  ArgumentError.checkNotNull(tagKeys, 'tagKeys');
  final $payload = <String, dynamic>{
    'TagKeys': tagKeys,
  };
  await _protocol.send(
    payload: $payload,
    method: 'POST',
    requestUri:
        '/meetings/${Uri.encodeComponent(meetingId)}/tags?operation=delete',
    exceptionFnMap: _exceptionFns,
  );
}