Class: Aws::SESV2::Types::Destination

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb

Overview

An object that describes the recipients for an email.

Amazon SES does not support the SMTPUTF8 extension, as described in RFC6531. For this reason, the local part of a destination email address (the part of the email address that precedes the @ sign) may only contain 7-bit ASCII characters. If the domain part of an address (the part after the @ sign) contains non-ASCII characters, they must be encoded using Punycode, as described in RFC3492.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bcc_addressesArray<String>

An array that contains the email addresses of the "BCC" (blind carbon copy) recipients for the email.

Returns:

  • (Array<String>)


1716
1717
1718
1719
1720
1721
1722
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 1716

class Destination < Struct.new(
  :to_addresses,
  :cc_addresses,
  :bcc_addresses)
  SENSITIVE = []
  include Aws::Structure
end

#cc_addressesArray<String>

An array that contains the email addresses of the "CC" (carbon copy) recipients for the email.

Returns:

  • (Array<String>)


1716
1717
1718
1719
1720
1721
1722
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 1716

class Destination < Struct.new(
  :to_addresses,
  :cc_addresses,
  :bcc_addresses)
  SENSITIVE = []
  include Aws::Structure
end

#to_addressesArray<String>

An array that contains the email addresses of the "To" recipients for the email.

Returns:

  • (Array<String>)


1716
1717
1718
1719
1720
1721
1722
# File 'gems/aws-sdk-sesv2/lib/aws-sdk-sesv2/types.rb', line 1716

class Destination < Struct.new(
  :to_addresses,
  :cc_addresses,
  :bcc_addresses)
  SENSITIVE = []
  include Aws::Structure
end