Class: Aws::SES::Types::TrackingOptions

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

Overview

Note:

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

{
  custom_redirect_domain: "CustomRedirectDomain",
}

A domain that is used to redirect email recipients to an Amazon SES-operated domain. This domain captures open and click events generated by Amazon SES emails.

For more information, see [Configuring Custom Domains to Handle Open and Click Tracking](ses/latest/DeveloperGuide/configure-custom-open-click-domains.html) in the *Amazon SES Developer Guide*.

Instance Attribute Summary collapse

Instance Attribute Details

#custom_redirect_domainString

The custom subdomain that will be used to redirect email recipients to the Amazon SES event tracking domain.

Returns:

  • (String)


5252
5253
5254
5255
# File 'lib/aws-sdk-ses/types.rb', line 5252

class TrackingOptions < Struct.new(
  :custom_redirect_domain)
  include Aws::Structure
end