Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Container image support for AWS Lambda via cloudformation

AWS Lambda now supports container images as a packaging format. Ref

Does cloudformation support using Container image for deploying AWS Lambda?

Something similar to packaging and deployment support via S3 Ref

like image 830
Jenson Avatar asked Aug 30 '26 17:08

Jenson


1 Answers

Does cloudformation support using Container image for deploying AWS Lambda?

Yes it does. AWS::Lambda::Function has new properties specific to container images, such as:

  • ImageConfig
  • PackageType
  • ImageUri
like image 156
Marcin Avatar answered Sep 01 '26 07:09

Marcin