Class: Aws::Connect::Types::InboundAdditionalRecipients

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-connect/types.rb

Overview

Information about the additional TO and CC recipients of an inbound email contact.

<note markdown=“1”> You can include up to 50 email addresses in total, distributed across [DestinationEmailAddress], ToAddresses, and CcAddresses. This total must include one required DestinationEmailAddress. You can then specify up to 49 addresses allocated across ToAddresses and CcAddresses as needed.

</note>

[1]: docs.aws.amazon.com/connect/latest/APIReference/API_StartEmailContact.html#API_StartEmailContact_RequestBody

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cc_addressesArray<Types::EmailAddressInfo>

The additional recipients information present in cc list. You must have 1 required recipient (DestinationEmailAddress). You can then specify up to 49 additional recipients (across ToAddresses and CcAddresses), for a total of 50 recipients.

Returns:



19282
19283
19284
19285
19286
19287
# File 'lib/aws-sdk-connect/types.rb', line 19282

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

#to_addressesArray<Types::EmailAddressInfo>

The additional recipients information present in to list. You must have 1 required recipient (DestinationEmailAddress). You can then specify up to 49 additional recipients (across ToAddresses and CcAddresses), for a total of 50 recipients.

Returns:



19282
19283
19284
19285
19286
19287
# File 'lib/aws-sdk-connect/types.rb', line 19282

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