paws.customer.engagement (version 0.1.0)

ses_set_active_receipt_rule_set: Sets the specified receipt rule set as the active receipt rule set

Description

Sets the specified receipt rule set as the active receipt rule set.

Usage

ses_set_active_receipt_rule_set(RuleSetName)

Arguments

RuleSetName

The name of the receipt rule set to make active. Setting this value to null disables all email receiving.

Request syntax

svc$set_active_receipt_rule_set(
  RuleSetName = "string"
)

Details

To disable your email-receiving through Amazon SES completely, you can call this API with RuleSetName set to null.

For information about managing receipt rule sets, see the Amazon SES Developer Guide.

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

Examples

Run this code
# NOT RUN {
# The following example sets the active receipt rule set:
# }
# NOT RUN {
svc$set_active_receipt_rule_set(
  RuleSetName = "RuleSetToActivate"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace