I am trying to add Lambda@Edge
association in cloudfront using cloudformation. As per aws docs they had only two fields like EventType
and LambdaFunctionARN
. But i want to add IncludeBody
in cloudformation so that my Lambda@Edge
will read the body of the request . When i try to add IncludeBody
in cloudformation it is saying error like invalid property
.
"LambdaFunctionAssociations":
[
{
"EventType": "origin-response",
"IncludeBody":"true" -- Invalid property error
"LambdaFunctionARN": "arn:aws:lambda:us-east-1:134952096518:function:LambdaEdge:1"
}
]
So, can't i add this through cloudformation . Or i need to do it manually from console ?
Any help is appreciated Thanks