Class: Aws::MailManager::Types::SendAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::MailManager::Types::SendAction
- Defined in:
- gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb
Overview
Sends the email to the internet using the ses:SendRawEmail API.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action_failure_policy ⇒ String
A policy that states what to do in the case of failure.
-
#role_arn ⇒ String
The Amazon Resource Name (ARN) of the role to use for 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 caller does not have the permissions to call the sendRawEmail API.
4325 4326 4327 4328 4329 4330 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 4325 class SendAction < Struct.new( :action_failure_policy, :role_arn) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The Amazon Resource Name (ARN) of the role to use for this action. This role must have access to the ses:SendRawEmail API.
4325 4326 4327 4328 4329 4330 |
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 4325 class SendAction < Struct.new( :action_failure_policy, :role_arn) SENSITIVE = [] include Aws::Structure end |