Class: Aws::SES::Types::ConnectAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::ConnectAction
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ses/types.rb
Overview
When included in a receipt rule, this action parses the received message and starts an email contact in Amazon Connect on your behalf.
<note markdown=“1”> When you receive emails, the maximum email size (including headers) is 40 MB. Additionally, emails may only have up to 10 attachments. Emails larger than 40 MB or with more than 10 attachments will be bounced.
</note>
We recommend that you configure this action via Amazon Connect.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#iam_role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM role to be used by Amazon Simple Email Service while starting email contacts to the Amazon Connect instance.
-
#instance_arn ⇒ String
The Amazon Resource Name (ARN) for the Amazon Connect instance that Amazon SES integrates with for starting email contacts.
Instance Attribute Details
#iam_role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM role to be used by Amazon Simple Email Service while starting email contacts to the Amazon Connect instance. This role should have permission to invoke ‘connect:StartEmailContact` for the given Amazon Connect instance.
573 574 575 576 577 578 |
# File 'lib/aws-sdk-ses/types.rb', line 573 class ConnectAction < Struct.new( :instance_arn, :iam_role_arn) SENSITIVE = [] include Aws::Structure end |
#instance_arn ⇒ String
The Amazon Resource Name (ARN) for the Amazon Connect instance that Amazon SES integrates with for starting email contacts.
For more information about Amazon Connect instances, see the [Amazon Connect Administrator Guide]
[1]: docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-instances.html
573 574 575 576 577 578 |
# File 'lib/aws-sdk-ses/types.rb', line 573 class ConnectAction < Struct.new( :instance_arn, :iam_role_arn) SENSITIVE = [] include Aws::Structure end |