deleteImagePipeline method
Deletes an image pipeline.
May throw ServiceException. May throw ClientException. May throw ServiceUnavailableException. May throw InvalidRequestException. May throw ForbiddenException. May throw CallRateLimitExceededException. May throw ResourceDependencyException.
Parameter imagePipelineArn
:
The Amazon Resource Name (ARN) of the image pipeline to delete.
Implementation
Future<DeleteImagePipelineResponse> deleteImagePipeline({
required String imagePipelineArn,
}) async {
ArgumentError.checkNotNull(imagePipelineArn, 'imagePipelineArn');
final $query = <String, List<String>>{
'imagePipelineArn': [imagePipelineArn],
};
final response = await _protocol.send(
payload: null,
method: 'DELETE',
requestUri: '/DeleteImagePipeline',
queryParams: $query,
exceptionFnMap: _exceptionFns,
);
return DeleteImagePipelineResponse.fromJson(response);
}