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