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

Indicates that the provided receipt rule does not exist.

*/ export interface RuleDoesNotExistException extends __ServiceException__<_RuleDoesNotExistExceptionDetails> { name: "RuleDoesNotExistException"; } export interface _RuleDoesNotExistExceptionDetails { /** *

Indicates that the named receipt rule does not exist.

*/ Name?: string; }