getTestExecutionArtifactsUrl method

Future<GetTestExecutionArtifactsUrlResponse> getTestExecutionArtifactsUrl({
  1. required String testExecutionId,
})

The pre-signed Amazon S3 URL to download the test execution result artifacts.

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

Parameter testExecutionId : The unique identifier of the completed test execution.

Implementation

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