describeContactEvaluation method
Describes a contact evaluation in the specified Connect Customer instance.
May throw InternalServiceException.
May throw InvalidParameterException.
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<DescribeContactEvaluationResponse> describeContactEvaluation({
required String evaluationId,
required String instanceId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri:
'/contact-evaluations/${Uri.encodeComponent(instanceId)}/${Uri.encodeComponent(evaluationId)}',
exceptionFnMap: _exceptionFns,
);
return DescribeContactEvaluationResponse.fromJson(response);
}