deleteConnectInstanceConfig method

Future<void> deleteConnectInstanceConfig({
  1. required String connectInstanceId,
})

Deletes a connect instance config from the specified AWS account.

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

Implementation

Future<void> deleteConnectInstanceConfig({
  required String connectInstanceId,
}) async {
  await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/connect-instance/${Uri.encodeComponent(connectInstanceId)}/config',
    exceptionFnMap: _exceptionFns,
  );
}