我将 boto3 waf-regional api 称为以下代码:
response = client.update_web_acl(
WebACLId=acl_id,
ChangeToken=get_token(),
Updates=[
{
'Action': 'INSERT',
'ActivatedRule': {
'Priority': 123,
'RuleId': rule_id,
'Action': {
'Type': 'BLOCK'
},
'OverrideAction': {
'Type': 'NONE'
},
'Type': 'REGULAR'
}
},
],
DefaultAction={
'Type': 'ALLOW'
}
)
但它一直给我一个错误botocore.errorfactory.WAFInvalidParameterException: An error occurred (WAFInvalidParameterException) when calling the UpdateWebACL operation:
这可能是什么原因以及如何解决?