web_ac_ls
Creates, updates, deletes, gets or lists a web_ac_ls resource.
Overview
| Name | web_ac_ls |
| Type | Resource |
| Id | aws.wafv2.web_ac_ls |
Fields
The following fields are returned by SELECT queries:
- list_web_ac_ls
| Name | Datatype | Description |
|---|---|---|
next_marker | string | When 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_acls | array | Array 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_web_ac_ls | select | region | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_web_ac_ls
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
;