third_party_firewall_firewall_policies
Creates, updates, deletes, gets or lists a third_party_firewall_firewall_policies resource.
Overview
| Name | third_party_firewall_firewall_policies |
| Type | Resource |
| Id | aws.fms.third_party_firewall_firewall_policies |
Fields
The following fields are returned by SELECT queries:
- list_third_party_firewall_firewall_policies
| Name | Datatype | Description |
|---|---|---|
firewall_policy_id | string | The ID of the specified firewall policy. (pattern: <code>^([\p{L}\p{Z}\p{N}_.:/=+-@]*)$</code>) |
firewall_policy_name | string | The name of the specified firewall policy. (pattern: <code>^([\p{L}\p{Z}\p{N}_.:/=+-@]*)$</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_third_party_firewall_firewall_policies | select | region | Retrieves a list of all of the third-party firewall policies that are associated with the third-party firewall administrator's account. |
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 |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_third_party_firewall_firewall_policies
Retrieves a list of all of the third-party firewall policies that are associated with the third-party firewall administrator's account.
SELECT
firewall_policy_id,
firewall_policy_name
FROM aws.fms.third_party_firewall_firewall_policies
WHERE region = '{{ region }}' -- required
;