Class: Aws::SES::Types::CreateConfigurationSetTrackingOptionsRequest

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 CreateConfigurationSetTrackingOptionsRequest data as a hash:

{
  configuration_set_name: "ConfigurationSetName", # required
  tracking_options: { # required
    custom_redirect_domain: "CustomRedirectDomain",
  },
}

Represents a request to create an open and click tracking option object in a configuration set.

Instance Attribute Summary collapse

Instance Attribute Details

#configuration_set_nameString

The name of the configuration set that the tracking options should be associated with.

Returns:

  • (String)


702
703
704
705
706
# File 'lib/aws-sdk-ses/types.rb', line 702

class CreateConfigurationSetTrackingOptionsRequest < Struct.new(
  :configuration_set_name,
  :tracking_options)
  include Aws::Structure
end

#tracking_optionsTypes::TrackingOptions

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*.



702
703
704
705
706
# File 'lib/aws-sdk-ses/types.rb', line 702

class CreateConfigurationSetTrackingOptionsRequest < Struct.new(
  :configuration_set_name,
  :tracking_options)
  include Aws::Structure
end