Class: Aws::Connect::Types::InboundAdditionalRecipients
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::InboundAdditionalRecipients
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
Information about the additional TO and CC recipients of an inbound email contact.
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cc_addresses ⇒ Array<Types::EmailAddressInfo>
The additional recipients information present in cc list.
-
#to_addresses ⇒ Array<Types::EmailAddressInfo>
The additional recipients information present in to list.
Instance Attribute Details
#cc_addresses ⇒ Array<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.
14323 14324 14325 14326 14327 14328 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 14323 class InboundAdditionalRecipients < Struct.new( :to_addresses, :cc_addresses) SENSITIVE = [] include Aws::Structure end |
#to_addresses ⇒ Array<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.
14323 14324 14325 14326 14327 14328 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 14323 class InboundAdditionalRecipients < Struct.new( :to_addresses, :cc_addresses) SENSITIVE = [] include Aws::Structure end |