import { ServiceException as __ServiceException__ } from "@aws-sdk/types"; /** *
Indicates that the Amazon Simple Notification Service (Amazon SNS) destination is invalid. See the error message for details.
*/ export interface InvalidSNSDestinationException extends __ServiceException__<_InvalidSNSDestinationExceptionDetails> { name: "InvalidSNSDestinationException"; } export interface _InvalidSNSDestinationExceptionDetails { /** *Indicates that the configuration set does not exist.
*/ ConfigurationSetName?: string; /** *Indicates that the event destination does not exist.
*/ EventDestinationName?: string; }