Class: Aws::SES::Types::CreateConfigurationSetTrackingOptionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SES::Types::CreateConfigurationSetTrackingOptionsRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ses/types.rb
Overview
Represents a request to create an open and click tracking option object in a configuration set.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#configuration_set_name ⇒ String
The name of the configuration set that the tracking options should be associated with.
-
#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 that the tracking options should be associated with.
650 651 652 653 654 655 |
# File 'lib/aws-sdk-ses/types.rb', line 650 class CreateConfigurationSetTrackingOptionsRequest < 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*.
[1]: docs.aws.amazon.com/ses/latest/dg/configure-custom-open-click-domains.html
650 651 652 653 654 655 |
# File 'lib/aws-sdk-ses/types.rb', line 650 class CreateConfigurationSetTrackingOptionsRequest < Struct.new( :configuration_set_name, :tracking_options) SENSITIVE = [] include Aws::Structure end |