package awsses // 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](https://docs.aws.amazon.com/ses/latest/dg/configure-custom-open-click-domains.html) in the *Amazon SES Developer Guide* . // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // trackingOptionsProperty := &TrackingOptionsProperty{ // CustomRedirectDomain: jsii.String("customRedirectDomain"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationset-trackingoptions.html // type CfnConfigurationSet_TrackingOptionsProperty struct { // The custom subdomain that is used to redirect email recipients to the Amazon SES event tracking domain. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationset-trackingoptions.html#cfn-ses-configurationset-trackingoptions-customredirectdomain // CustomRedirectDomain *string `field:"optional" json:"customRedirectDomain" yaml:"customRedirectDomain"` }