deleteWirelessGatewayTaskDefinition method
Deletes a wireless gateway task definition. Deleting this task definition does not affect tasks that are currently in progress.
May throw AccessDeniedException.
May throw InternalServerException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
May throw ValidationException.
Parameter id :
The ID of the resource to delete.
Implementation
Future<void> deleteWirelessGatewayTaskDefinition({
required String id,
}) async {
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/wireless-gateway-task-definitions/${Uri.encodeComponent(id)}',
exceptionFnMap: _exceptionFns,
);
}