Skip to main content

third_party_firewall_firewall_policies

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

Overview

Namethird_party_firewall_firewall_policies
TypeResource
Idaws.fms.third_party_firewall_firewall_policies

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
firewall_policy_idstringThe ID of the specified firewall policy. (pattern: <code>^([\p{L}\p{Z}\p{N}_.:/=+-@]*)$</code>)
firewall_policy_namestringThe name of the specified firewall policy. (pattern: <code>^([\p{L}\p{Z}\p{N}_.:/=+-@]*)$</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_third_party_firewall_firewall_policiesselectregionRetrieves 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;