getImagePipeline method
Gets an image pipeline.
May throw ServiceException. May throw ClientException. May throw ServiceUnavailableException. May throw InvalidRequestException. May throw ForbiddenException. May throw CallRateLimitExceededException.
Parameter imagePipelineArn
:
The Amazon Resource Name (ARN) of the image pipeline that you want to
retrieve.
Implementation
Future<GetImagePipelineResponse> getImagePipeline({
required String imagePipelineArn,
}) async {
ArgumentError.checkNotNull(imagePipelineArn, 'imagePipelineArn');
final $query = <String, List<String>>{
'imagePipelineArn': [imagePipelineArn],
};
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri: '/GetImagePipeline',
queryParams: $query,
exceptionFnMap: _exceptionFns,
);
return GetImagePipelineResponse.fromJson(response);
}