deleteReceiptFilter method

Future<void> deleteReceiptFilter({
  1. required String filterName,
})

Deletes the specified IP address filter.

For information about managing IP address filters, see the Amazon SES Developer Guide.

You can execute this operation no more than once per second.

Parameter filterName : The name of the IP address filter to delete.

Implementation

Future<void> deleteReceiptFilter({
  required String filterName,
}) async {
  ArgumentError.checkNotNull(filterName, 'filterName');
  final $request = <String, dynamic>{};
  $request['FilterName'] = filterName;
  await _protocol.send(
    $request,
    action: 'DeleteReceiptFilter',
    version: '2010-12-01',
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    shape: shapes['DeleteReceiptFilterRequest'],
    shapes: shapes,
    resultWrapper: 'DeleteReceiptFilterResult',
  );
}