Skip to main content

apps_lists

Creates, updates, deletes, gets or lists an apps_lists resource.

Overview

Nameapps_lists
TypeResource
Idaws.fms.apps_lists

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
apps_listobjectInformation about the specified Firewall Manager applications list.
apps_list_arnstringThe Amazon Resource Name (ARN) of the applications list. (pattern: <code>^([\p{L}\p{Z}\p{N}_.:/=+-@]*)$</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_apps_listselectregionReturns information about the specified Firewall Manager applications list.
list_apps_listsselectregionReturns an array of AppsListDataSummary objects.
put_apps_listreplaceregion, AppsListCreates an Firewall Manager applications list.
delete_apps_listdeleteregionPermanently deletes an Firewall Manager applications list.

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

Returns information about the specified Firewall Manager applications list.

SELECT
apps_list,
apps_list_arn
FROM aws.fms.apps_lists
WHERE region = '{{ region }}' -- required
;

REPLACE examples

Creates an Firewall Manager applications list.

REPLACE aws.fms.apps_lists
SET
AppsList = '{{ AppsList }}',
TagList = '{{ TagList }}'
WHERE
region = '{{ region }}' --required
AND AppsList = '{{ AppsList }}' --required
RETURNING
apps_list,
apps_list_arn;

DELETE examples

Permanently deletes an Firewall Manager applications list.

DELETE FROM aws.fms.apps_lists
WHERE region = '{{ region }}' --required
;