Class: Aws::PinpointEmail::Types::Destination
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::PinpointEmail::Types::Destination
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-pinpointemail/types.rb
 
Overview
An object that describes the recipients for an email.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #bcc_addresses  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An array that contains the email addresses of the “BCC” (blind carbon copy) recipients for the email.
 - 
  
    
      #cc_addresses  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An array that contains the email addresses of the “CC” (carbon copy) recipients for the email.
 - 
  
    
      #to_addresses  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An array that contains the email addresses of the “To” recipients for the email.
 
Instance Attribute Details
#bcc_addresses ⇒ Array<String>
An array that contains the email addresses of the “BCC” (blind carbon copy) recipients for the email.
      667 668 669 670 671 672 673  | 
    
      # File 'lib/aws-sdk-pinpointemail/types.rb', line 667 class Destination < Struct.new( :to_addresses, :cc_addresses, :bcc_addresses) SENSITIVE = [] include Aws::Structure end  | 
  
#cc_addresses ⇒ Array<String>
An array that contains the email addresses of the “CC” (carbon copy) recipients for the email.
      667 668 669 670 671 672 673  | 
    
      # File 'lib/aws-sdk-pinpointemail/types.rb', line 667 class Destination < Struct.new( :to_addresses, :cc_addresses, :bcc_addresses) SENSITIVE = [] include Aws::Structure end  | 
  
#to_addresses ⇒ Array<String>
An array that contains the email addresses of the “To” recipients for the email.
      667 668 669 670 671 672 673  | 
    
      # File 'lib/aws-sdk-pinpointemail/types.rb', line 667 class Destination < Struct.new( :to_addresses, :cc_addresses, :bcc_addresses) SENSITIVE = [] include Aws::Structure end  |