Class: Aws::MailManager::Types::SendAction

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#action_failure_policyString

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.

Returns:

  • (String)


3322
3323
3324
3325
3326
3327
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 3322

class SendAction < Struct.new(
  :action_failure_policy,
  :role_arn)
  SENSITIVE = []
  include Aws::Structure
end

#role_arnString

The Amazon Resource Name (ARN) of the role to use for this action. This role must have access to the ses:SendRawEmail API.

Returns:

  • (String)


3322
3323
3324
3325
3326
3327
# File 'gems/aws-sdk-mailmanager/lib/aws-sdk-mailmanager/types.rb', line 3322

class SendAction < Struct.new(
  :action_failure_policy,
  :role_arn)
  SENSITIVE = []
  include Aws::Structure
end