deleteCloudConnector method

Future<void> deleteCloudConnector({
  1. required String identifier,
})

Delete a cloud connector.

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

Parameter identifier : The identifier of the cloud connector.

Implementation

Future<void> deleteCloudConnector({
  required String identifier,
}) async {
  await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/cloud-connectors/${Uri.encodeComponent(identifier)}',
    exceptionFnMap: _exceptionFns,
  );
}