Class: Aws::SES::Types::CreateReceiptRuleRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::CreateReceiptRuleRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ses/types.rb
Overview
Represents a request to create a receipt rule. You use receipt rules 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
-
#after ⇒ String
The name of an existing rule after which the new rule is placed.
-
#rule ⇒ Types::ReceiptRule
A data structure that contains the specified rule’s name, actions, recipients, domains, enabled status, scan status, and TLS policy.
-
#rule_set_name ⇒ String
The name of the rule set where the receipt rule is added.
Instance Attribute Details
#after ⇒ String
The name of an existing rule after which the new rule is placed. If this parameter is null, the new rule is inserted at the beginning of the rule list.
765 766 767 768 769 770 771 |
# File 'lib/aws-sdk-ses/types.rb', line 765 class CreateReceiptRuleRequest < Struct.new( :rule_set_name, :after, :rule) SENSITIVE = [] include Aws::Structure end |
#rule ⇒ Types::ReceiptRule
A data structure that contains the specified rule’s name, actions, recipients, domains, enabled status, scan status, and TLS policy.
765 766 767 768 769 770 771 |
# File 'lib/aws-sdk-ses/types.rb', line 765 class CreateReceiptRuleRequest < Struct.new( :rule_set_name, :after, :rule) SENSITIVE = [] include Aws::Structure end |
#rule_set_name ⇒ String
The name of the rule set where the receipt rule is added.
765 766 767 768 769 770 771 |
# File 'lib/aws-sdk-ses/types.rb', line 765 class CreateReceiptRuleRequest < Struct.new( :rule_set_name, :after, :rule) SENSITIVE = [] include Aws::Structure end |