SES / Client / exceptions / ConfigurationSetSendingPausedException

ConfigurationSetSendingPausedException#

class SES.Client.exceptions.ConfigurationSetSendingPausedException#

Indicates that email sending is disabled for the configuration set.

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

Example

try:
  ...
except client.exceptions.ConfigurationSetSendingPausedException as e:
  print(e.response)
response#

The parsed error response. All exceptions have a top level Error key that provides normalized access to common exception atrributes. All other keys are specific to this service or exception class.

Syntax

{
    'ConfigurationSetName': 'string',
    'Error': {
        'Code': 'string',
        'Message': 'string'
    }
}

Structure

  • (dict) –

    Indicates that email sending is disabled for the configuration set.

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

    • ConfigurationSetName (string) –

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

    • Error (dict) – Normalized access to common exception attributes.

      • Code (string) – An identifier specifying the exception type.

      • Message (string) – A descriptive message explaining why the exception occured.