Class: Aws::SES::Types::ExtensionField
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::SES::Types::ExtensionField
 
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ses/types.rb
Overview
Additional X-headers to include in the Delivery Status Notification (DSN) when an email that Amazon SES receives on your behalf bounces.
For information about receiving email through Amazon SES, see the [Amazon SES Developer Guide].
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the header to add. 
- 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The value of the header to add. 
Instance Attribute Details
#name ⇒ String
The name of the header to add. Must be between 1 and 50 characters, inclusive, and consist of alphanumeric (a-z, A-Z, 0-9) characters and dashes only.
| 1638 1639 1640 1641 1642 1643 | # File 'lib/aws-sdk-ses/types.rb', line 1638 class ExtensionField < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end | 
#value ⇒ String
The value of the header to add. Must contain 2048 characters or fewer, and must not contain newline characters (“\r” or “\n”).
| 1638 1639 1640 1641 1642 1643 | # File 'lib/aws-sdk-ses/types.rb', line 1638 class ExtensionField < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |