getImagePipeline method
Gets an image pipeline.
May throw CallRateLimitExceededException.
May throw ClientException.
May throw ForbiddenException.
May throw InvalidRequestException.
May throw ServiceException.
May throw ServiceUnavailableException.
Parameter imagePipelineArn :
The Amazon Resource Name (ARN) of the image pipeline that you want to
retrieve.
Implementation
Future<GetImagePipelineResponse> getImagePipeline({
required String imagePipelineArn,
}) async {
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);
}