deleteInstanceOnboardingJob method
Delete the Connect Campaigns onboarding job for the specified Amazon Connect instance.
May throw AccessDeniedException.
May throw InternalServerException.
May throw InvalidStateException.
May throw ResourceNotFoundException.
May throw ValidationException.
Implementation
Future<void> deleteInstanceOnboardingJob({
required String connectInstanceId,
}) async {
await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/connect-instance/${Uri.encodeComponent(connectInstanceId)}/onboarding',
exceptionFnMap: _exceptionFns,
);
}