Class: Aws::SES::Types::CreateReceiptRuleSetRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ses/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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#rule_set_nameString

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.

Returns:

  • (String)


801
802
803
804
805
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 801

class CreateReceiptRuleSetRequest < Struct.new(
  :rule_set_name)
  SENSITIVE = []
  include Aws::Structure
end