Class: Aws::SES::Types::CreateReceiptRuleSetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::CreateReceiptRuleSetRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ses/types.rb
Overview
Note:
When making an API call, you may pass CreateReceiptRuleSetRequest data as a hash:
{
rule_set_name: "ReceiptRuleSetName", # required
}
Represents a request to create an empty receipt rule set. You use receipt rule sets to receive email with Amazon SES. For more information, see the [Amazon SES Developer Guide].
[1]: docs.aws.amazon.com/ses/latest/DeveloperGuide/receiving-email-concepts.html
Instance Attribute Summary collapse
-
#rule_set_name ⇒ String
The name of the rule set to create.
Instance Attribute Details
#rule_set_name ⇒ String
The name of the rule set to create. The name must:
-
Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (_), or dashes (-).
-
Start and end with a letter or number.
-
Contain less than 64 characters.
688 689 690 691 |
# File 'lib/aws-sdk-ses/types.rb', line 688 class CreateReceiptRuleSetRequest < Struct.new( :rule_set_name) include Aws::Structure end |