paws.customer.engagement (version 0.1.0)

ses_clone_receipt_rule_set: Creates a receipt rule set by cloning an existing one

Description

Creates a receipt rule set by cloning an existing one. All receipt rules and configurations are copied to the new receipt rule set and are completely independent of the source rule set.

Usage

ses_clone_receipt_rule_set(RuleSetName, OriginalRuleSetName)

Arguments

RuleSetName

[required] The name of the rule set to create. The name must:

  • This value can only contain ASCII letters (a-z, A-Z), numbers (0-9), underscores (\_), or dashes (-).

  • Start and end with a letter or number.

  • Contain less than 64 characters.

OriginalRuleSetName

[required] The name of the rule set to clone.

Request syntax

svc$clone_receipt_rule_set(
  RuleSetName = "string",
  OriginalRuleSetName = "string"
)

Details

For information about setting up 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 creates a receipt rule set by cloning an existing
# one:
# }
# NOT RUN {
svc$clone_receipt_rule_set(
  OriginalRuleSetName = "RuleSetToClone",
  RuleSetName = "RuleSetToCreate"
)
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab