Interface CfnReceiptRule.ConnectActionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnReceiptRule.ConnectActionProperty.Jsii$Proxy
- Enclosing class:
CfnReceiptRule
@Stability(Stable)
public static interface CfnReceiptRule.ConnectActionProperty
extends software.amazon.jsii.JsiiSerializable
When included in a receipt rule, this action parses the received message and starts an email contact in Amazon Connect on your behalf.
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.
We recommend that you configure this action via Amazon Connect.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.ses.*; ConnectActionProperty connectActionProperty = ConnectActionProperty.builder() .iamRoleArn("iamRoleArn") .instanceArn("instanceArn") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnReceiptRule.ConnectActionProperty
static final class
An implementation forCfnReceiptRule.ConnectActionProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
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.The Amazon Resource Name (ARN) for the Amazon Connect instance that Amazon SES integrates with for starting email contacts.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIamRoleArn
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.- See Also:
-
getInstanceArn
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
- See Also:
-
builder
-