Class: Aws::PinpointEmail::Types::TrackingOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::PinpointEmail::Types::TrackingOptions
- Defined in:
- gems/aws-sdk-pinpointemail/lib/aws-sdk-pinpointemail/types.rb
Overview
Note:
When making an API call, you may pass TrackingOptions data as a hash:
{
custom_redirect_domain: "CustomRedirectDomain", # required
}
An object that defines the tracking options for a configuration set. When you use Amazon Pinpoint to send an email, it contains an invisible image that's used to track when recipients open your email. If your email contains links, those links are changed slightly in order to track when recipients click them.
These images and links include references to a domain operated by AWS. You can optionally configure Amazon Pinpoint to use a domain that you operate for these images and links.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#custom_redirect_domain ⇒ String
The domain that you want to use for tracking open and click events.
Instance Attribute Details
#custom_redirect_domain ⇒ String
The domain that you want to use for tracking open and click events.
3694 3695 3696 3697 3698 |
# File 'gems/aws-sdk-pinpointemail/lib/aws-sdk-pinpointemail/types.rb', line 3694 class TrackingOptions < Struct.new( :custom_redirect_domain) SENSITIVE = [] include Aws::Structure end |