We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 892f1fa commit 6a86327Copy full SHA for 6a86327
index.d.ts
@@ -731,7 +731,16 @@ export interface AWS {
731
individually?: boolean;
732
patterns?: string[];
733
};
734
- provisionedConcurrency?: number | AwsCfFunction | AwsCfIf;
+ provisionedConcurrency?:
735
+ | (
736
+ | number
737
+ | {
738
+ executions: number;
739
+ alias?: string;
740
+ }
741
+ )
742
+ | AwsCfFunction
743
+ | AwsCfIf;
744
reservedConcurrency?: number | AwsCfFunction | AwsCfIf;
745
role?: AwsLambdaRole;
746
runtime?: AwsLambdaRuntime;
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@serverless/typescript",
3
- "version": "4.10.1",
+ "version": "4.11.1",
4
"description": "Serverless typescript definitions",
5
"main": "index.d.ts",
6
"scripts": {
0 commit comments