List Managed Rule Sets
wafv2_list_managed_rule_sets | R Documentation |
Retrieves the managed rule sets that you own¶
Description¶
Retrieves the managed rule sets that you own.
This is intended for use only by vendors of managed rule sets. Vendors are Amazon Web Services and Amazon Web Services Marketplace sellers.
Vendors, you can use the managed rule set APIs to provide controlled
rollout of your versioned managed rule group offerings for your
customers. The APIs are list_managed_rule_sets
,
get_managed_rule_set
, put_managed_rule_set_versions
, and
update_managed_rule_set_version_expiry_date
.
Usage¶
wafv2_list_managed_rule_sets(Scope, NextMarker, Limit)
Arguments¶
Scope |
[required] Specifies whether this is for a global resource type, such as a Amazon CloudFront distribution. To work with CloudFront, you must also specify the Region US East (N. Virginia) as follows:
|
NextMarker |
When you request a list of objects with a |
Limit |
The maximum number of objects that you want WAF to return for
this request. If more objects are available, in the response, WAF
provides a |
Value¶
A list with the following syntax:
list(
NextMarker = "string",
ManagedRuleSets = list(
list(
Name = "string",
Id = "string",
Description = "string",
LockToken = "string",
ARN = "string",
LabelNamespace = "string"
)
)
)
Request syntax¶
svc$list_managed_rule_sets(
Scope = "CLOUDFRONT"|"REGIONAL",
NextMarker = "string",
Limit = 123
)