Class: Aws::SESV2::Types::PutConfigurationSetTrackingOptionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SESV2::Types::PutConfigurationSetTrackingOptionsRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sesv2/types.rb
Overview
A request to add a custom domain for tracking open and click events to a configuration set.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#configuration_set_name ⇒ String
The name of the configuration set.
-
#custom_redirect_domain ⇒ String
The domain to use to track open and click events.
-
#https_policy ⇒ String
The https policy to use for tracking open and click events.
Instance Attribute Details
#configuration_set_name ⇒ String
The name of the configuration set.
5625 5626 5627 5628 5629 5630 5631 |
# File 'lib/aws-sdk-sesv2/types.rb', line 5625 class PutConfigurationSetTrackingOptionsRequest < Struct.new( :configuration_set_name, :custom_redirect_domain, :https_policy) SENSITIVE = [] include Aws::Structure end |
#custom_redirect_domain ⇒ String
The domain to use to track open and click events.
5625 5626 5627 5628 5629 5630 5631 |
# File 'lib/aws-sdk-sesv2/types.rb', line 5625 class PutConfigurationSetTrackingOptionsRequest < Struct.new( :configuration_set_name, :custom_redirect_domain, :https_policy) SENSITIVE = [] include Aws::Structure end |
#https_policy ⇒ String
The https policy to use for tracking open and click events. If the value is OPTIONAL or HttpsPolicy is not specified, the open trackers use HTTP and click tracker use the original protocol of the link. If the value is REQUIRE, both open and click tracker uses HTTPS and if the value is REQUIRE_OPEN_ONLY open tracker uses HTTPS and link tracker is same as original protocol of the link.
5625 5626 5627 5628 5629 5630 5631 |
# File 'lib/aws-sdk-sesv2/types.rb', line 5625 class PutConfigurationSetTrackingOptionsRequest < Struct.new( :configuration_set_name, :custom_redirect_domain, :https_policy) SENSITIVE = [] include Aws::Structure end |