Class: Aws::MailManager::Types::DeliverToMailboxAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::MailManager::Types::DeliverToMailboxAction
- Defined in:
- gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb
Overview
This action to delivers an email to a mailbox.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action_failure_policy ⇒ String
A policy that states what to do in the case of failure.
-
#mailbox_arn ⇒ String
The Amazon Resource Name (ARN) of a WorkMail organization to deliver the email to.
-
#role_arn ⇒ String
The Amazon Resource Name (ARN) of an IAM role to use to execute this action.
Instance Attribute Details
#action_failure_policy ⇒ String
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.
870 871 872 873 874 875 876 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 870 class DeliverToMailboxAction < Struct.new( :action_failure_policy, :mailbox_arn, :role_arn) SENSITIVE = [] include Aws::Structure end |
#mailbox_arn ⇒ String
The Amazon Resource Name (ARN) of a WorkMail organization to deliver the email to.
870 871 872 873 874 875 876 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 870 class DeliverToMailboxAction < Struct.new( :action_failure_policy, :mailbox_arn, :role_arn) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
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.
870 871 872 873 874 875 876 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 870 class DeliverToMailboxAction < Struct.new( :action_failure_policy, :mailbox_arn, :role_arn) SENSITIVE = [] include Aws::Structure end |