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

Indicates that email sending is disabled for the configuration set.

You can enable or disable email sending for a configuration set using UpdateConfigurationSetSendingEnabled.

*/ export interface ConfigurationSetSendingPausedException extends __ServiceException__<_ConfigurationSetSendingPausedExceptionDetails> { name: "ConfigurationSetSendingPausedException"; } export interface _ConfigurationSetSendingPausedExceptionDetails { /** *

The name of the configuration set for which email sending is disabled.

*/ ConfigurationSetName?: string; }