Skip to main content

web_ac_ls

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

Overview

Nameweb_ac_ls
TypeResource
Idaws.wafv2.web_ac_ls

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_markerstringWhen you request a list of objects with a Limit setting, if the number of objects that are still available for retrieval exceeds the limit, WAF returns a NextMarker value in the response. To retrieve the next batch of objects, provide the marker from the prior call in your next request. (pattern: <code>.\S.</code>)
web_aclsarrayArray of web ACLs. If you specified a Limit in your request, this might not be the full list.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_web_ac_lsselectregionRetrieves an array of WebACLSummary objects for the web ACLs that you manage.

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 an array of WebACLSummary objects for the web ACLs that you manage.

SELECT
next_marker,
web_acls
FROM aws.wafv2.web_ac_ls
WHERE region = '{{ region }}' -- required
;