deleteCell method

Future<void> deleteCell({
  1. required String cellName,
})

Delete a cell. When successful, the response code is 204, with no response body.

May throw AccessDeniedException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter cellName : The name of the cell.

Implementation

Future<void> deleteCell({
  required String cellName,
}) async {
  await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/cells/${Uri.encodeComponent(cellName)}',
    exceptionFnMap: _exceptionFns,
  );
}