Interface CfnMailManagerRuleSetPropsMixin.DeliverToMailboxActionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMailManagerRuleSetPropsMixin.DeliverToMailboxActionProperty.Jsii$Proxy
- Enclosing class:
CfnMailManagerRuleSetPropsMixin
@Stability(Stable)
public static interface CfnMailManagerRuleSetPropsMixin.DeliverToMailboxActionProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.mixins.preview.services.ses.mixins.*;
DeliverToMailboxActionProperty deliverToMailboxActionProperty = DeliverToMailboxActionProperty.builder()
.actionFailurePolicy("actionFailurePolicy")
.mailboxArn("mailboxArn")
.roleArn("roleArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnMailManagerRuleSetPropsMixin.DeliverToMailboxActionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA policy that states what to do in the case of failure.default StringThe Amazon Resource Name (ARN) of a WorkMail organization to deliver the email to.default StringThe Amazon Resource Name (ARN) of an IAM role to use to execute this action.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getActionFailurePolicy
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.
- See Also:
-
getMailboxArn
The Amazon Resource Name (ARN) of a WorkMail organization to deliver the email to.- See Also:
-
getRoleArn
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.
- See Also:
-
builder
@Stability(Stable) static CfnMailManagerRuleSetPropsMixin.DeliverToMailboxActionProperty.Builder builder()
-