Class: Aws::SES::Types::UpdateConfigurationSetTrackingOptionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::UpdateConfigurationSetTrackingOptionsRequest
- Defined in:
- gems/aws-sdk-ses/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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#configuration_set_name ⇒ String
The name of the configuration set for which you want to update the custom tracking domain.
-
#tracking_options ⇒ Types::TrackingOptions
A domain that is used to redirect email recipients to an Amazon SES-operated domain.
Instance Attribute Details
#configuration_set_name ⇒ String
The name of the configuration set for which you want to update the custom tracking domain.
6132 6133 6134 6135 6136 6137 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 6132 class UpdateConfigurationSetTrackingOptionsRequest < Struct.new( :configuration_set_name, :tracking_options) SENSITIVE = [] include Aws::Structure end |
#tracking_options ⇒ Types::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 in the Amazon SES Developer Guide.
6132 6133 6134 6135 6136 6137 |
# File 'gems/aws-sdk-ses/lib/aws-sdk-ses/types.rb', line 6132 class UpdateConfigurationSetTrackingOptionsRequest < Struct.new( :configuration_set_name, :tracking_options) SENSITIVE = [] include Aws::Structure end |