Get ARN for Classic WAF rules

0

Hi There,

I'm looking for a way to check rules tags with Classic WAF in python. However list_tags_for_resource requires an ARN. As far as I know, it is not possible to get an ARN with get_rule or create_rule (or update_rule). Is there a way to get the ARN for a Classic WAF rule in python or to get rule tags without using an ARN ?

Thanks.

已提问 1 年前472 查看次数
1 回答
0
已接受的回答

Hi,

would it be possible for you to construct it yourself? I guess the nature and format of a WAF ARN is kinda of known.

arn:aws:waf::<WAF_REGION>:rule/<RULE_ID>

You would need to find the specific rule id you need, and the list_rules https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/waf/client/list_rules.html may do that trick, unless you already have it.

Hope it helps ;)

profile picture
专家
已回答 1 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则