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

The specified resource doesn't exist.

*/ export interface ResourceNotFoundException extends __ServiceException__<_ResourceNotFoundExceptionDetails> { name: "ResourceNotFoundException"; } export interface _ResourceNotFoundExceptionDetails { /** * _String shape */ Message?: string; /** *

For a ResourceNotFoundException error, the type of resource that doesn't exist.

*/ ResourceType?: string; }