deleteFirewallDomainList method

Future<DeleteFirewallDomainListOutput> deleteFirewallDomainList({
  1. required String firewallDomainListId,
})

Deletes a firewall domain list. This operation cannot be undone.

May throw AccessDeniedException. May throw ConflictException. May throw InternalServerException. May throw ResourceNotFoundException. May throw ThrottlingException. May throw ValidationException.

Parameter firewallDomainListId : The unique identifier of the firewall domain list to delete.

Implementation

Future<DeleteFirewallDomainListOutput> deleteFirewallDomainList({
  required String firewallDomainListId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/firewall-domain-lists/${Uri.encodeComponent(firewallDomainListId)}',
    exceptionFnMap: _exceptionFns,
  );
  return DeleteFirewallDomainListOutput.fromJson(response);
}