Class: Aws::MailManager::Types::ReplaceRecipientAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::MailManager::Types::ReplaceRecipientAction
- Defined in:
- gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb
Overview
This action replaces the email envelope recipients with the given list of recipients. If the condition of this action applies only to a subset of recipients, only those recipients are replaced with the recipients specified in the action. The message contents and headers are unaffected by this action, only the envelope recipients are updated.
Constant Summary collapse
- SENSITIVE =
[:replace_with]
Instance Attribute Summary collapse
-
#replace_with ⇒ Array<String>
This action specifies the replacement recipient email addresses to insert.
Instance Attribute Details
#replace_with ⇒ Array<String>
This action specifies the replacement recipient email addresses to insert.
2599 2600 2601 2602 2603 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 2599 class ReplaceRecipientAction < Struct.new( :replace_with) SENSITIVE = [:replace_with] include Aws::Structure end |