Class: Aws::MailManager::Types::ReplaceRecipientAction

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#replace_withArray<String>

This action specifies the replacement recipient email addresses to insert.

Returns:

  • (Array<String>)


2474
2475
2476
2477
2478
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 2474

class ReplaceRecipientAction < Struct.new(
  :replace_with)
  SENSITIVE = [:replace_with]
  include Aws::Structure
end