untagAttendee method

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

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

May throw BadRequestException. May throw ForbiddenException. May throw ThrottledClientException. May throw NotFoundException. 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.

Parameter tagKeys : The tag keys.

Implementation

Future<void> untagAttendee({
  required String attendeeId,
  required String meetingId,
  required List<String> tagKeys,
}) async {
  ArgumentError.checkNotNull(attendeeId, 'attendeeId');
  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)}/attendees/${Uri.encodeComponent(attendeeId)}/tags?operation=delete',
    exceptionFnMap: _exceptionFns,
  );
}