AWSSESCreateConfigurationSetTrackingOptionsRequest

Objective-C

@interface AWSSESCreateConfigurationSetTrackingOptionsRequest

Swift

class AWSSESCreateConfigurationSetTrackingOptionsRequest

Represents a request to create an open and click tracking option object in a configuration set.

Required parameters: [ConfigurationSetName, TrackingOptions]

  • The name of the configuration set that the tracking options should be associated with.

    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 }