import { ServiceException as __ServiceException__ } from "@aws-sdk/types"; /** * ResourceNotFoundException shape */ export interface ResourceNotFoundException extends __ServiceException__<_ResourceNotFoundExceptionDetails> { name: "ResourceNotFoundException"; } export interface _ResourceNotFoundExceptionDetails { /** *

404

*/ Code?: string; /** *

The requested device could not be found.

*/ Message?: string; }