Skip to main content

available_managed_rule_group_versions

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

Overview

Nameavailable_managed_rule_group_versions
TypeResource
Idaws.wafv2.available_managed_rule_group_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
current_default_versionstringThe name of the version that's currently set as the default. (pattern: <code>^[\w#:.-/]+$</code>)
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>)
versionsarrayThe versions that are currently available for the specified managed rule group. 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_available_managed_rule_group_versionsselectregionReturns a list of the available versions for the specified managed rule group.

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 a list of the available versions for the specified managed rule group.

SELECT
current_default_version,
next_marker,
versions
FROM aws.wafv2.available_managed_rule_group_versions
WHERE region = '{{ region }}' -- required
;