Class: Aws::MailManager::Types::AddHeaderAction

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb

Overview

The action to add a header to a message. When executed, this action will add the given header to the message.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#header_nameString

The name of the header to add to an email. The header must be prefixed with "X-". Headers are added regardless of whether the header name pre-existed in the email.

Returns:

  • (String)


41
42
43
44
45
46
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 41

class AddHeaderAction < Struct.new(
  :header_name,
  :header_value)
  SENSITIVE = []
  include Aws::Structure
end

#header_valueString

The value of the header to add to the email.

Returns:

  • (String)


41
42
43
44
45
46
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 41

class AddHeaderAction < Struct.new(
  :header_name,
  :header_value)
  SENSITIVE = []
  include Aws::Structure
end