paws.customer.engagement (version 0.1.0)

ses_update_configuration_set_sending_enabled: Enables or disables email sending for messages sent using a specific configuration set in a given AWS Region

Description

Enables or disables email sending for messages sent using a specific configuration set in a given AWS Region. You can use this operation in conjunction with Amazon CloudWatch alarms to temporarily pause email sending for a configuration set when the reputation metrics for that configuration set (such as your bounce on complaint rate) exceed certain thresholds.

Usage

ses_update_configuration_set_sending_enabled(ConfigurationSetName,
  Enabled)

Arguments

ConfigurationSetName

[required] The name of the configuration set that you want to update.

Enabled

[required] Describes whether email sending is enabled or disabled for the configuration set.

Request syntax

svc$update_configuration_set_sending_enabled(
  ConfigurationSetName = "string",
  Enabled = TRUE|FALSE
)

Details

You can execute this operation no more than once per second.

Examples

Run this code
# NOT RUN {
# Set the sending enabled flag for a specific configuration set.
# }
# NOT RUN {
svc$update_configuration_set_sending_enabled(
  ConfigurationSetName = "foo",
  Enabled = TRUE
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace