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

The resource specified in the request was not found. See the message * field for more information.

*/ export interface NotFoundException extends __ServiceException__<_NotFoundExceptionDetails> { name: "NotFoundException"; } export interface _NotFoundExceptionDetails { /** *

Describes the error encountered.

*/ Message?: string; /** *

The resource type.

*/ ResourceType?: string; }