deleteImagePipeline method

Future<DeleteImagePipelineResponse> deleteImagePipeline({
  1. required String imagePipelineArn,
})

Deletes an image pipeline.

May throw CallRateLimitExceededException. May throw ClientException. May throw ForbiddenException. May throw InvalidRequestException. May throw ResourceDependencyException. May throw ServiceException. May throw ServiceUnavailableException.

Parameter imagePipelineArn : The Amazon Resource Name (ARN) of the image pipeline to delete.

Implementation

Future<DeleteImagePipelineResponse> deleteImagePipeline({
  required String imagePipelineArn,
}) async {
  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);
}