import { ServiceException as __ServiceException__ } from "@aws-sdk/types"; /** *
Indicates that the provided Amazon SNS topic is invalid, or that Amazon SES could not publish to the topic, possibly due to permissions issues. For information about giving permissions, see the Amazon SES Developer Guide.
*/ export interface InvalidSnsTopicException extends __ServiceException__<_InvalidSnsTopicExceptionDetails> { name: "InvalidSnsTopicException"; } export interface _InvalidSnsTopicExceptionDetails { /** *Indicates that the topic does not exist.
*/ Topic?: string; }