deleteQueueEnvironment method
Deletes a queue environment.
May throw AccessDeniedException.
May throw InternalServerErrorException.
May throw ThrottlingException.
May throw ValidationException.
Parameter farmId :
The farm ID of the farm from which to remove the queue environment.
Parameter queueEnvironmentId :
The queue environment ID of the queue environment to delete.
Parameter queueId :
The queue ID of the queue environment to delete.
Implementation
Future<void> deleteQueueEnvironment({
required String farmId,
required String queueEnvironmentId,
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)}/environments/${Uri.encodeComponent(queueEnvironmentId)}',
exceptionFnMap: _exceptionFns,
);
}