theBeginner
theBeginner

Reputation: 95

Can i make changes in the published version of aws lambda?

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?

Upvotes: 2

Views: 1536

Answers (1)

Marcin
Marcin

Reputation: 238131

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.

Upvotes: 3

Related Questions