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.
3447 3448 3449 3450 3451 3452 3453 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 3447 class RelayAction < Struct.new( :action_failure_policy, :relay, :mail_from) 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.
3447 3448 3449 3450 3451 3452 3453 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 3447 class RelayAction < Struct.new( :action_failure_policy, :relay, :mail_from) SENSITIVE = [] include Aws::Structure end |
#relay ⇒ String
The identifier of the relay resource to be used when relaying an email.
3447 3448 3449 3450 3451 3452 3453 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 3447 class RelayAction < Struct.new( :action_failure_policy, :relay, :mail_from) SENSITIVE = [] include Aws::Structure end |