Class: Aws::SES::Types::UpdateConfigurationSetTrackingOptionsRequest

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

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

Represents a request to update the tracking options for a configuration set.

Instance Attribute Summary collapse

Instance Attribute Details

#configuration_set_nameString

The name of the configuration set for which you want to update the custom tracking domain.

Returns:

  • (String)


5428
5429
5430
5431
5432
# File 'lib/aws-sdk-ses/types.rb', line 5428

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



5428
5429
5430
5431
5432
# File 'lib/aws-sdk-ses/types.rb', line 5428

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