deleteConfigurationSet method
Deletes a configuration set. Configuration sets enable you to publish email sending events. For information about using configuration sets, see the Amazon SES Developer Guide.
You can execute this operation no more than once per second.
May throw ConfigurationSetDoesNotExistException.
Parameter configurationSetName
:
The name of the configuration set to delete.
Implementation
Future<void> deleteConfigurationSet({
required String configurationSetName,
}) async {
ArgumentError.checkNotNull(configurationSetName, 'configurationSetName');
final $request = <String, dynamic>{};
$request['ConfigurationSetName'] = configurationSetName;
await _protocol.send(
$request,
action: 'DeleteConfigurationSet',
version: '2010-12-01',
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
shape: shapes['DeleteConfigurationSetRequest'],
shapes: shapes,
resultWrapper: 'DeleteConfigurationSetResult',
);
}