Show / Hide Table of Contents

Interface CfnReceiptRule.IConnectActionProperty

When included in a receipt rule, this action parses the received message and starts an email contact in Amazon Connect on your behalf.

Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnReceiptRule.IConnectActionProperty
Syntax (vb)
Public Interface CfnReceiptRule.IConnectActionProperty
Remarks
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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-connectaction.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.SES;

             var connectActionProperty = new ConnectActionProperty {
                 IamRoleArn = "iamRoleArn",
                 InstanceArn = "instanceArn"
             };

Synopsis

Properties

IamRoleArn

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.

InstanceArn

The Amazon Resource Name (ARN) for the Amazon Connect instance that Amazon SES integrates with for starting email contacts.

Properties

IamRoleArn

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.

string IamRoleArn { get; }
Property Value

string

Remarks

This role should have permission to invoke connect:StartEmailContact for the given Amazon Connect instance.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-connectaction.html#cfn-ses-receiptrule-connectaction-iamrolearn

InstanceArn

The Amazon Resource Name (ARN) for the Amazon Connect instance that Amazon SES integrates with for starting email contacts.

string InstanceArn { get; }
Property Value

string

Remarks

For more information about Amazon Connect instances, see the Amazon Connect Administrator Guide

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-receiptrule-connectaction.html#cfn-ses-receiptrule-connectaction-instancearn

Back to top Generated by DocFX