Class: Aws::MailManager::Types::RelayAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::MailManager::Types::RelayAction
- Defined in:
- gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb
Overview
The action relays the email via SMTP to another specific SMTP server.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action_failure_policy ⇒ String
A policy that states what to do in the case of failure.
-
#mail_from ⇒ String
This action specifies whether to preserve or replace original mail from address while relaying received emails to a destination server.
-
#relay ⇒ String
The identifier of the relay resource to be used when relaying an email.
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 specified relay has been deleted.
2543 2544 2545 2546 2547 2548 2549 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 2543 class RelayAction < Struct.new( :action_failure_policy, :mail_from, :relay) SENSITIVE = [] include Aws::Structure end |
#mail_from ⇒ String
This action specifies whether to preserve or replace original mail from address while relaying received emails to a destination server.
2543 2544 2545 2546 2547 2548 2549 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 2543 class RelayAction < Struct.new( :action_failure_policy, :mail_from, :relay) SENSITIVE = [] include Aws::Structure end |
#relay ⇒ String
The identifier of the relay resource to be used when relaying an email.
2543 2544 2545 2546 2547 2548 2549 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 2543 class RelayAction < Struct.new( :action_failure_policy, :mail_from, :relay) SENSITIVE = [] include Aws::Structure end |