Create Receipt Rule Set
ses_create_receipt_rule_set | R Documentation |
Creates an empty receipt rule set¶
Description¶
Creates an empty receipt rule set.
For information about setting up receipt rule sets, see the Amazon SES Developer Guide.
You can execute this operation no more than once per second.
Usage¶
ses_create_receipt_rule_set(RuleSetName)
Arguments¶
RuleSetName |
[required] The name of the rule set to create. The name must meet the following requirements:
|
Value¶
An empty list.
Request syntax¶
svc$create_receipt_rule_set(
RuleSetName = "string"
)
Examples¶
## Not run:
# The following example creates an empty receipt rule set:
svc$create_receipt_rule_set(
RuleSetName = "MyRuleSet"
)
## End(Not run)