1

Lets consider i have a lambda function , i have two versions of it v1 and v2 and both version are published If in any case i want to make code changes in v1 can i go directly to v1 and make code changes and publish the same version again?

John Rotenstein
  • 241,921
  • 22
  • 380
  • 470
theBeginner
  • 85
  • 10
  • I also noticed that almost all your questions have answers, yet not a single one accepted. Accepting good answers is not only a good practice, but it reduces number of duplicates and increases chances for your questions to be actually answered. – Marcin Dec 10 '21 at 05:41
  • 1
    Definitely i am glad you answered my question – theBeginner Dec 16 '21 at 12:14

1 Answers1

1

Sadly you can't. Published lambda versions are immutable:

You can change the function code and settings only on the unpublished version of a function.

If your version is already publish, any changes must be made to a new version.

Marcin
  • 215,873
  • 14
  • 235
  • 294