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

The operation tried to access a nonexistent stream.

*/ export interface ResourceNotFoundException extends __ServiceException__<_ResourceNotFoundExceptionDetails> { name: "ResourceNotFoundException"; } export interface _ResourceNotFoundExceptionDetails { /** *

The resource which is being requested does not exist.

*/ message?: string; }