deleteQueue method
Permanently delete a queue you have created.
May throw BadRequestException.
May throw ConflictException.
May throw ForbiddenException.
May throw InternalServerErrorException.
May throw NotFoundException.
May throw ServiceQuotaExceededException.
May throw TooManyRequestsException.
Parameter name :
The name of the queue that you want to delete.
Implementation
Future<void> deleteQueue({
required String name,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/2017-08-29/queues/${Uri.encodeComponent(name)}',
exceptionFnMap: _exceptionFns,
);
}