describeTestExecution method

Future<DescribeTestExecutionResponse> describeTestExecution({
  1. required String testExecutionId,
})

Gets metadata information about the test execution.

May throw InternalServerException. May throw ResourceNotFoundException. May throw ServiceQuotaExceededException. May throw ThrottlingException. May throw ValidationException.

Parameter testExecutionId : The execution Id of the test set execution.

Implementation

Future<DescribeTestExecutionResponse> describeTestExecution({
  required String testExecutionId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri: '/testexecutions/${Uri.encodeComponent(testExecutionId)}',
    exceptionFnMap: _exceptionFns,
  );
  return DescribeTestExecutionResponse.fromJson(response);
}