import { ServiceException as __ServiceException__ } from "@aws-sdk/types"; /** *

One or more of the resources in the request does not exist in the system.

*/ export interface NotFoundException extends __ServiceException__<_NotFoundExceptionDetails> { name: "NotFoundException"; } export interface _NotFoundExceptionDetails { /** * _ErrorCode shape */ Code?: "Unauthorized" | "Forbidden" | "NotFound" | "BadRequest" | "Conflict" | "ServiceFailure" | "ServiceUnavailable" | "Unprocessable" | "Throttled" | "PreconditionFailed" | string; /** * _String shape */ Message?: string; }