Class: Aws::SESV2::Types::Destination
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::Destination
- Defined in:
- gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/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.
1748 1749 1750 1751 1752 1753 1754 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 1748 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.
1748 1749 1750 1751 1752 1753 1754 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 1748 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.
1748 1749 1750 1751 1752 1753 1754 |
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 1748 class Destination < Struct.new( :to_addresses, :cc_addresses, :bcc_addresses) SENSITIVE = [] include Aws::Structure end |