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
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/dg/receiving-email-concepts.html
Constant Summary collapse
- SENSITIVE =
 []
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 meet the following requirements:
- 
Contain only ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes (-).
 - 
Start and end with a letter or number.
 - 
Contain 64 characters or fewer.
 
      840 841 842 843 844  | 
    
      # File 'lib/aws-sdk-ses/types.rb', line 840 class CreateReceiptRuleSetRequest < Struct.new( :rule_set_name) SENSITIVE = [] include Aws::Structure end  |