import { ServiceException as __ServiceException__ } from "@aws-sdk/types"; /** *
Indicates that the delete operation could not be completed.
*/ export interface CannotDeleteException extends __ServiceException__<_CannotDeleteExceptionDetails> { name: "CannotDeleteException"; } export interface _CannotDeleteExceptionDetails { /** *Indicates that a resource could not be deleted because no resource with the specified name exists.
*/ Name?: string; }