Skip to main content

managed_firewall_domain_lists

Creates, updates, deletes, gets or lists a managed_firewall_domain_lists resource.

Overview

Namemanaged_firewall_domain_lists
TypeResource
Idaws.route53globalresolver.managed_firewall_domain_lists

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringID of the Managed Domain List. (pattern: <code>[-.a-zA-Z0-9]+</code>)
namestringName of the Managed Domain List. (pattern: <code>(?!^[0-9]+$)([a-zA-Z0-9-_/' ']+)</code>)
descriptionstringDescription of the Managed Domain List.
managed_list_typestringType of the managed category. This is either THREAT or CONTENT.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_managed_firewall_domain_listselectmanaged_firewall_domain_list_id, regionRetrieves information about an Amazon Web Services-managed firewall domain list. Managed domain lists contain domains associated with malicious activity, content categories, or specific threats. Route 53 Global Resolver is a global service that supports resolvers in multiple Amazon Web Services Regions but you must specify the US East (Ohio) Region to create, update, or otherwise work with Route 53 Global Resolver resources. That is, for example, specify --region us-east-2 on Amazon Web Services CLI commands.
list_managed_firewall_domain_listsselectmanaged_firewall_domain_list_type, regionmax_results, next_tokenReturns a paginated list of the Amazon Web Services Managed DNS Lists and the categories for DNS Firewall. The categories are either THREAT or CONTENT. Route 53 Global Resolver is a global service that supports resolvers in multiple Amazon Web Services Regions but you must specify the US East (Ohio) Region to create, update, or otherwise work with Route 53 Global Resolver resources. That is, for example, specify --region us-east-2 on Amazon Web Services CLI commands.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
managed_firewall_domain_list_idstringID of the Managed Domain List.
managed_firewall_domain_list_typestringThe category of the Manage DNS list either THREAT or CONTENT.
regionstringAWS region (default: us-east-1)
max_resultsintegerThe maximum number of results to retrieve in a single call.
next_tokenstringA pagination token used for large sets of results that can't be returned in a single response.

SELECT examples

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. Route 53 Global Resolver is a global service that supports resolvers in multiple Amazon Web Services Regions but you must specify the US East (Ohio) Region to create, update, or otherwise work with Route 53 Global Resolver resources. That is, for example, specify --region us-east-2 on Amazon Web Services CLI commands.

SELECT
id,
name,
description,
managed_list_type
FROM aws.route53globalresolver.managed_firewall_domain_lists
WHERE managed_firewall_domain_list_id = '{{ managed_firewall_domain_list_id }}' -- required
AND region = '{{ region }}' -- required
;