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.
2561 2562 2563 2564 2565 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 2561 class ReplaceRecipientAction < Struct.new( :replace_with) SENSITIVE = [:replace_with] include Aws::Structure end |