Class: Aws::SES::Types::SetActiveReceiptRuleSetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::SetActiveReceiptRuleSetRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ses/types.rb
Overview
Represents a request to set a receipt rule set as the active 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 receipt rule set to make active.
Instance Attribute Details
#rule_set_name ⇒ String
The name of the receipt rule set to make active. Setting this value to null disables all email receiving.
4538 4539 4540 4541 4542 |
# File 'lib/aws-sdk-ses/types.rb', line 4538 class SetActiveReceiptRuleSetRequest < Struct.new( :rule_set_name) SENSITIVE = [] include Aws::Structure end |