deleteEventIntegration method

Future<void> deleteEventIntegration({
  1. required String name,
})

Deletes the specified existing event integration. If the event integration is associated with clients, the request is rejected.

May throw AccessDeniedException. May throw InternalServiceError. May throw InvalidRequestException. May throw ResourceNotFoundException. May throw ThrottlingException.

Parameter name : The name of the event integration.

Implementation

Future<void> deleteEventIntegration({
  required String name,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri: '/eventIntegrations/${Uri.encodeComponent(name)}',
    exceptionFnMap: _exceptionFns,
  );
}