SAM v1.18.0 Release: Lambda Provisioned Concurrency Support
SAM V1.18.0 Release: Provisioned Concurrency Feature Support in SAM
Change Log:
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