In AWS Lambda function, what is the difference between deploy and publish?

Viewed 707

In AWS Lambda function, what is the difference between deploy and publish?

When we only deploy, do the consuming services get to use the updated function (assuming they are pointing to latest function version)?

When we only publish, does it get auto deployed?

1 Answers

Depending on where you are deriving your context for deploy and publish, normally deploy means redeploying your lambda with new code whereas publish is increasing your lambda version (not redeploying code).

Related