Closed richardwhiteii closed 1 year ago
"LambdaSQSEventSource": { "Type": "AWS::Lambda::EventSourceMapping", "Properties": { "EventSourceArn": { **"_Ref_":** "DataNewQueue" //The line showing as red. }, "FunctionName": { "Ref": "SecureLambdaFunction" }, "Enabled": true, "BatchSize": 5 } },
@richardwhiteii Should be using "Fn::GetAtt": ["DataNewQueue", "Arn"]
"Fn::GetAtt": ["DataNewQueue", "Arn"]
Thank you