getManagedFirewallDomainList method

Future<GetManagedFirewallDomainListOutput> getManagedFirewallDomainList({
  1. required String managedFirewallDomainListId,
})

Retrieves information about an Amazon Web Services-managed firewall domain list. Managed domain lists contain domains associated with malicious activity, content categories, or specific threats.

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

Parameter managedFirewallDomainListId : ID of the Managed Domain List.

Implementation

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