Class: Aws::MailManager::Types::AddHeaderAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::MailManager::Types::AddHeaderAction
- 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
-
#header_name ⇒ String
The name of the header to add to an email.
-
#header_value ⇒ String
The value of the header to add to the email.
Instance Attribute Details
#header_name ⇒ String
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.
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_value ⇒ String
The value of the header to add to the email.
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 |