deleteContactEvaluation method
Deletes a contact evaluation in the specified Connect Customer instance.
May throw InternalServiceException.
May throw InvalidParameterException.
May throw ResourceConflictException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
Parameter evaluationId :
A unique identifier for the contact evaluation.
Parameter instanceId :
The identifier of the Connect Customer instance. You can find
the instance ID in the Amazon Resource Name (ARN) of the instance.
Implementation
Future<void> deleteContactEvaluation({
required String evaluationId,
required String instanceId,
}) async {
await _protocol.send(
payload: null,
method: 'DELETE',
requestUri:
'/contact-evaluations/${Uri.encodeComponent(instanceId)}/${Uri.encodeComponent(evaluationId)}',
exceptionFnMap: _exceptionFns,
);
}