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