Interface IBounceActionConfig
BoundAction configuration.
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IBounceActionConfig
Syntax (vb)
Public Interface IBounceActionConfig
Remarks
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 bounceActionConfig = new BounceActionConfig {
Message = "message",
Sender = "sender",
SmtpReplyCode = "smtpReplyCode",
// the properties below are optional
StatusCode = "statusCode",
TopicArn = "topicArn"
};
Synopsis
Properties
Message | Human-readable text to include in the bounce message. |
Sender | The email address of the sender of the bounced email. |
SmtpReplyCode | The SMTP reply code, as defined by RFC 5321. |
StatusCode | The SMTP enhanced status code, as defined by RFC 3463. |
TopicArn | The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the bounce action is taken. |
Properties
Message
Human-readable text to include in the bounce message.
string Message { get; }
Property Value
System.String
Remarks
Sender
The email address of the sender of the bounced email.
string Sender { get; }
Property Value
System.String
Remarks
This is the address that the bounce message is sent from.
SmtpReplyCode
The SMTP reply code, as defined by RFC 5321.
string SmtpReplyCode { get; }
Property Value
System.String
Remarks
StatusCode
The SMTP enhanced status code, as defined by RFC 3463.
virtual string StatusCode { get; }
Property Value
System.String
Remarks
TopicArn
The Amazon Resource Name (ARN) of the Amazon SNS topic to notify when the bounce action is taken.
virtual string TopicArn { get; }
Property Value
System.String
Remarks
Default: - No notification is sent to SNS.