import { ServiceException as __ServiceException__ } from "@aws-sdk/types"; /** *
Indicates that the provided receipt rule set does not exist.
*/ export interface RuleSetDoesNotExistException extends __ServiceException__<_RuleSetDoesNotExistExceptionDetails> { name: "RuleSetDoesNotExistException"; } export interface _RuleSetDoesNotExistExceptionDetails { /** *Indicates that the named receipt rule set does not exist.
*/ Name?: string; }