interface DeliverToMailboxActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SES.Mixins.CfnMailManagerRuleSetPropsMixin.DeliverToMailboxActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsses/mixins#CfnMailManagerRuleSetPropsMixin_DeliverToMailboxActionProperty |
Java | software.amazon.awscdk.mixins.preview.services.ses.mixins.CfnMailManagerRuleSetPropsMixin.DeliverToMailboxActionProperty |
Python | aws_cdk.mixins_preview.aws_ses.mixins.CfnMailManagerRuleSetPropsMixin.DeliverToMailboxActionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ses » mixins » CfnMailManagerRuleSetPropsMixin » DeliverToMailboxActionProperty |
This action to delivers an email to a mailbox.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ses_mixins } from '@aws-cdk/mixins-preview/aws-ses';
const deliverToMailboxActionProperty: ses_mixins.CfnMailManagerRuleSetPropsMixin.DeliverToMailboxActionProperty = {
actionFailurePolicy: 'actionFailurePolicy',
mailboxArn: 'mailboxArn',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| action | string | A policy that states what to do in the case of failure. |
| mailbox | string | The Amazon Resource Name (ARN) of a WorkMail organization to deliver the email to. |
| role | string | The Amazon Resource Name (ARN) of an IAM role to use to execute this action. |
actionFailurePolicy?
Type:
string
(optional)
A policy that states what to do in the case of failure.
The action will fail if there are configuration errors. For example, the mailbox ARN is no longer valid.
mailboxArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of a WorkMail organization to deliver the email to.
roleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of an IAM role to use to execute this action.
The role must have access to the workmail:DeliverToMailbox API.

.NET
Go
Java
Python
TypeScript