Class: Aws::SES::Types::ConnectAction

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#iam_role_arnString

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.

Returns:

  • (String)


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_arnString

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

Returns:

  • (String)


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