Class: Aws::SES::Types::ReceiptRuleSetMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::ReceiptRuleSetMetadata
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ses/types.rb
Overview
Information about a receipt rule set.
A receipt rule set is a collection of rules that specify what Amazon SES should do with mail it receives on behalf of your account’s verified domains.
For information about setting up receipt rule sets, see the [Amazon SES Developer Guide].
[1]: docs.aws.amazon.com/ses/latest/dg/receiving-email-concepts.html#receiving-email-concepts-rules
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#created_timestamp ⇒ Time
The date and time the receipt rule set was created.
-
#name ⇒ String
The name of the receipt rule set.
Instance Attribute Details
#created_timestamp ⇒ Time
The date and time the receipt rule set was created.
3271 3272 3273 3274 3275 3276 |
# File 'lib/aws-sdk-ses/types.rb', line 3271 class ReceiptRuleSetMetadata < Struct.new( :name, :created_timestamp) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the receipt rule set. 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.
3271 3272 3273 3274 3275 3276 |
# File 'lib/aws-sdk-ses/types.rb', line 3271 class ReceiptRuleSetMetadata < Struct.new( :name, :created_timestamp) SENSITIVE = [] include Aws::Structure end |