2 Answers
- Newest
- Most votes
- Most comments
2
Hi,
Are the outputs of your Lambda step defined exactly as you referenced in your question?
{ "Payload": { "LaunchtemplateID": "lt-00972d7c12345678a" }, "StatusCode": 200 }
outputs:
- Name: LaunchtemplateID
Selector: $.Payload.LaunchTemplateID Type: String
If so, double check that you're using the proper case and variable naming. If the payload output is LaunchtemplateID the outputs selector should also use the lower-case t in Template (ie. $.Payload.LaunchtemplateID not $.Payload.LaunchTemplateID
answered a year ago
Relevant content
- Accepted Answer
- asked 2 years ago
- AWS OFFICIALUpdated 10 months ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated a year ago
Great! My pleasure!