Следующий фрагмент взят из шаблона формирования Cloudformation:
...
LambdaFunctionAssociations:
- !If
- ProtectDistribution
-
- EventType: viewer-request
LambdaFunctionARN: !GetAtt LambdaEdgeProtection.Outputs.CheckAuthHandler
- EventType: origin-response
LambdaFunctionARN: !GetAtt LambdaEdgeProtection.Outputs.HttpHeadersHandler
- !Ref AWS::NoValue
...
Это часть DefaultCacheBehavior
в DistributionConfig
дистрибутива CloudFront. Это выдает мне эту ошибку при попытке создать стек:
Property validation failure: [Value of property {/DistributionConfig/DefaultCacheBehavior/LambdaFunctionAssociations/0} does not match type {Object}]
Куда я иду не так, пожалуйста?