Skip to content

SAM v1.18.0 Release: Lambda Provisioned Concurrency Support

Compare
Choose a tag to compare
@praneetap praneetap released this 03 Dec 22:41
· 211 commits to master since this release
818b4ef

SAM V1.18.0 Release: Provisioned Concurrency Feature Support in SAM

Change Log:

  1. #1284 #1285

Provisioned Concurrency Feature Support

This release adds support to configure the number of concurrent executions to be reserved for the lambda function on AWS::Lambda::Alias resource. Setting the AutoPublishAlas property is required to use this feature on an AWS::Serverless::Function.

Resources:
  MinimalFunction:
    Type: 'AWS::Serverless::Function'
    Properties:
      CodeUri: ./src/
      Handler: index.handler
      Runtime: nodejs8.10
      AutoPublishAlias: live
      ProvisionedConcurrencyConfig:
        ProvisionedConcurrentExecutions: 10