deleteConfigurationSetTrackingOptions method
Deletes an association between a configuration set and a custom domain for open and click event tracking.
By default, images and links used for tracking open and click events are hosted on domains operated by Amazon SES. You can configure a subdomain of your own to handle these events. For information about using custom domains, see the Amazon SES Developer Guide.
May throw ConfigurationSetDoesNotExistException. May throw TrackingOptionsDoesNotExistException.
Parameter configurationSetName
:
The name of the configuration set from which you want to delete the
tracking options.
Implementation
Future<void> deleteConfigurationSetTrackingOptions({
required String configurationSetName,
}) async {
ArgumentError.checkNotNull(configurationSetName, 'configurationSetName');
final $request = <String, dynamic>{};
$request['ConfigurationSetName'] = configurationSetName;
await _protocol.send(
$request,
action: 'DeleteConfigurationSetTrackingOptions',
version: '2010-12-01',
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
shape: shapes['DeleteConfigurationSetTrackingOptionsRequest'],
shapes: shapes,
resultWrapper: 'DeleteConfigurationSetTrackingOptionsResult',
);
}