AWSSESUpdateConfigurationSetTrackingOptionsRequest

Objective-C

@interface AWSSESUpdateConfigurationSetTrackingOptionsRequest

Swift

class AWSSESUpdateConfigurationSetTrackingOptionsRequest

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

Required parameters: [ConfigurationSetName, TrackingOptions]

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

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable configurationSetName;

    Swift

    var configurationSetName: String? { get set }
  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSSESTrackingOptions *_Nullable trackingOptions;

    Swift

    var trackingOptions: AWSSESTrackingOptions? { get set }