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.
1024 1025 1026 1027 1028 1029 1030 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 1024 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.
1024 1025 1026 1027 1028 1029 1030 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 1024 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.
1024 1025 1026 1027 1028 1029 1030 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 1024 class DeliverToMailboxAction < Struct.new( :action_failure_policy, :mailbox_arn, :role_arn) SENSITIVE = [] include Aws::Structure end |