Class: Aws::SES::Types::Destination
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::Destination
- Defined in:
- gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb
Overview
Represents the destination of the message, consisting of To:, CC:, and BCC: fields.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bcc_addresses ⇒ Array<String>
The recipients to place on the BCC: line of the message.
-
#cc_addresses ⇒ Array<String>
The recipients to place on the CC: line of the message.
-
#to_addresses ⇒ Array<String>
The recipients to place on the To: line of the message.
Instance Attribute Details
#bcc_addresses ⇒ Array<String>
The recipients to place on the BCC: line of the message.
1475 1476 1477 1478 1479 1480 1481 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 1475 class Destination < Struct.new( :to_addresses, :cc_addresses, :bcc_addresses) SENSITIVE = [] include Aws::Structure end |
#cc_addresses ⇒ Array<String>
The recipients to place on the CC: line of the message.
1475 1476 1477 1478 1479 1480 1481 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 1475 class Destination < Struct.new( :to_addresses, :cc_addresses, :bcc_addresses) SENSITIVE = [] include Aws::Structure end |
#to_addresses ⇒ Array<String>
The recipients to place on the To: line of the message.
1475 1476 1477 1478 1479 1480 1481 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 1475 class Destination < Struct.new( :to_addresses, :cc_addresses, :bcc_addresses) SENSITIVE = [] include Aws::Structure end |