managed_firewall_domain_lists
Creates, updates, deletes, gets or lists a managed_firewall_domain_lists resource.
Overview
| Name | managed_firewall_domain_lists |
| Type | Resource |
| Id | aws.route53globalresolver.managed_firewall_domain_lists |
Fields
The following fields are returned by SELECT queries:
- get_managed_firewall_domain_list
- list_managed_firewall_domain_lists
| Name | Datatype | Description |
|---|---|---|
id | string | ID of the Managed Domain List. (pattern: <code>[-.a-zA-Z0-9]+</code>) |
name | string | Name of the Managed Domain List. (pattern: <code>(?!^[0-9]+$)([a-zA-Z0-9-_/' ']+)</code>) |
description | string | Description of the Managed Domain List. |
managed_list_type | string | Type of the managed category. This is either THREAT or CONTENT. |
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier of the managed firewall domain list. (pattern: <code>[-.a-zA-Z0-9]+</code>) |
name | string | The name of the managed firewall domain list. (pattern: <code>(?!^[0-9]+$)([a-zA-Z0-9-_/' ']+)</code>) |
description | string | A description of the managed firewall domain list. |
managed_list_type | string | The type of the managed firewall domain list. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_managed_firewall_domain_list | select | managed_firewall_domain_list_id, region | 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. | |
list_managed_firewall_domain_lists | select | managed_firewall_domain_list_type, region | max_results, next_token | Returns 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.
| Name | Datatype | Description |
|---|---|---|
managed_firewall_domain_list_id | string | ID of the Managed Domain List. |
managed_firewall_domain_list_type | string | The category of the Manage DNS list either THREAT or CONTENT. |
region | string | AWS region (default: us-east-1) |
max_results | integer | The maximum number of results to retrieve in a single call. |
next_token | string | A pagination token used for large sets of results that can't be returned in a single response. |
SELECT examples
- get_managed_firewall_domain_list
- list_managed_firewall_domain_lists
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
;
Returns 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.
SELECT
id,
name,
description,
managed_list_type
FROM aws.route53globalresolver.managed_firewall_domain_lists
WHERE managed_firewall_domain_list_type = '{{ managed_firewall_domain_list_type }}' -- required
AND region = '{{ region }}' -- required
AND max_results = '{{ max_results }}'
AND next_token = '{{ next_token }}'
;