Class: Aws::Pinpoint::Types::EmailChannelRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-pinpoint/types.rb

Overview

Note:

When making an API call, you may pass EmailChannelRequest data as a hash:

{
  enabled: false,
  from_address: "__string",
  identity: "__string",
  role_arn: "__string",
}

Email Channel Request

Instance Attribute Summary collapse

Instance Attribute Details

#enabledBoolean

If the channel is enabled for sending messages.

Returns:

  • (Boolean)


1544
1545
1546
1547
1548
1549
1550
# File 'lib/aws-sdk-pinpoint/types.rb', line 1544

class EmailChannelRequest < Struct.new(
  :enabled,
  :from_address,
  :identity,
  :role_arn)
  include Aws::Structure
end

#from_addressString

The email address used to send emails from.

Returns:

  • (String)


1544
1545
1546
1547
1548
1549
1550
# File 'lib/aws-sdk-pinpoint/types.rb', line 1544

class EmailChannelRequest < Struct.new(
  :enabled,
  :from_address,
  :identity,
  :role_arn)
  include Aws::Structure
end

#identityString

The ARN of an identity verified with SES.

Returns:

  • (String)


1544
1545
1546
1547
1548
1549
1550
# File 'lib/aws-sdk-pinpoint/types.rb', line 1544

class EmailChannelRequest < Struct.new(
  :enabled,
  :from_address,
  :identity,
  :role_arn)
  include Aws::Structure
end

#role_arnString

The ARN of an IAM Role used to submit events to Mobile Analytics’ event ingestion service

Returns:

  • (String)


1544
1545
1546
1547
1548
1549
1550
# File 'lib/aws-sdk-pinpoint/types.rb', line 1544

class EmailChannelRequest < Struct.new(
  :enabled,
  :from_address,
  :identity,
  :role_arn)
  include Aws::Structure
end