Interface CfnMailManagerRuleSet.IDeliverToMailboxActionProperty
This action to delivers an email to a mailbox.
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IDeliverToMailboxActionProperty
Syntax (vb)
Public Interface IDeliverToMailboxActionProperty
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 deliverToMailboxActionProperty = new DeliverToMailboxActionProperty {
MailboxArn = "mailboxArn",
RoleArn = "roleArn",
// the properties below are optional
ActionFailurePolicy = "actionFailurePolicy"
};
Synopsis
Properties
Action |
A policy that states what to do in the case of failure. |
Mailbox |
The Amazon Resource Name (ARN) of a WorkMail organization to deliver the email to. |
Role |
The Amazon Resource Name (ARN) of an IAM role to use to execute this action. |
Properties
ActionFailurePolicy
A policy that states what to do in the case of failure.
virtual string ActionFailurePolicy { get; }
Property Value
System.
Remarks
The action will fail if there are configuration errors. For example, the mailbox ARN is no longer valid.
MailboxArn
The Amazon Resource Name (ARN) of a WorkMail organization to deliver the email to.
string MailboxArn { get; }
Property Value
System.
Remarks
RoleArn
The Amazon Resource Name (ARN) of an IAM role to use to execute this action.
string RoleArn { get; }
Property Value
System.
Remarks
The role must have access to the workmail:DeliverToMailbox API.