disassociateMemberFromQueue method
Disassociates a member from a queue.
May throw AccessDeniedException.
May throw ConflictException.
May throw InternalServerErrorException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter farmId :
The farm ID for the queue to disassociate from a member.
Parameter principalId :
A member's principal ID to disassociate from a queue.
Parameter queueId :
The queue ID of the queue in which you're disassociating from a member.
Implementation
Future<void> disassociateMemberFromQueue({
required String farmId,
required String principalId,
required String queueId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/2023-10-12/farms/${Uri.encodeComponent(farmId)}/queues/${Uri.encodeComponent(queueId)}/members/${Uri.encodeComponent(principalId)}',
exceptionFnMap: _exceptionFns,
);
}