我看到了这个答案,但它对我不起作用。具有相同内联策略的 AWS SAM 多项功能
当我运行sam local start-api
它时'Globals', "'Policies' is not a supported property of 'Function'
这是我的示例代码
Globals:
Function:
Runtime: nodejs14.x
MemorySize: 128
Timeout: 100
Policies:
- Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- 'dynamodb:GetItem'
- 'dynamodb:PutItem'
- 'dynamodb:Scan'
- 'dynamodb:Query'
- 'dynamodb:DeleteItem'
- 'dynamodb:Update*'
Resource: 'arn:aws:dynamodb:us-xxxx-1:xxxxxxx:table/xxxxxxxx'
有没有办法声明全球政策