Skip to content

Set Active Receipt Rule Set

ses_set_active_receipt_rule_set R Documentation

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.

To disable your email-receiving through Amazon SES completely, you can call this operation 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.

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.

Value

An empty list.

Request syntax

svc$set_active_receipt_rule_set(
  RuleSetName = "string"
)

Examples

## Not run: 
# The following example sets the active receipt rule set:
svc$set_active_receipt_rule_set(
  RuleSetName = "RuleSetToActivate"
)

## End(Not run)