getPipelineExecution method

Future<GetPipelineExecutionOutput> getPipelineExecution({
  1. required String pipelineExecutionId,
  2. required String pipelineName,
})

Returns information about an execution of a pipeline, including details about artifacts, the pipeline execution ID, and the name, version, and status of the pipeline.

May throw ValidationException. May throw PipelineNotFoundException. May throw PipelineExecutionNotFoundException.

Parameter pipelineExecutionId : The ID of the pipeline execution about which you want to get execution details.

Parameter pipelineName : The name of the pipeline about which you want to get execution details.

Implementation

Future<GetPipelineExecutionOutput> getPipelineExecution({
  required String pipelineExecutionId,
  required String pipelineName,
}) async {
  ArgumentError.checkNotNull(pipelineExecutionId, 'pipelineExecutionId');
  ArgumentError.checkNotNull(pipelineName, 'pipelineName');
  _s.validateStringLength(
    'pipelineName',
    pipelineName,
    1,
    100,
    isRequired: true,
  );
  final headers = <String, String>{
    'Content-Type': 'application/x-amz-json-1.1',
    'X-Amz-Target': 'CodePipeline_20150709.GetPipelineExecution'
  };
  final jsonResponse = await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
    payload: {
      'pipelineExecutionId': pipelineExecutionId,
      'pipelineName': pipelineName,
    },
  );

  return GetPipelineExecutionOutput.fromJson(jsonResponse.body);
}