deleteConnectorDestination method

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

Delete a connector destination linked to a cloud-to-cloud (C2C) connector.

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

Parameter identifier : The identifier of the connector destination.

Implementation

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