Skip to content

Commit 403a6b2

Browse files
author
ljacobsson
committed
feat: shared Lambda test events
1 parent 46b9d0b commit 403a6b2

File tree

6 files changed

+289
-134
lines changed

6 files changed

+289
-134
lines changed

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 [fullname]
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

package-lock.json

+3-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "cfn-resource-actions",
33
"displayName": "CloudFormation Resource Actions",
44
"description": "Integrate with deployed resources directly from your CloudFormation template",
5-
"version": "0.0.40",
5+
"version": "0.0.42",
66
"publisher": "ljacobsson",
77
"engines": {
88
"vscode": "^1.46.0"
+60-52
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,63 @@
11
{
2-
"ResourceTypes": {
3-
"AWS::Serverless::Function": {
4-
"Attributes": {
5-
"Alias": {
6-
"PrimitiveType": "String"
7-
},
8-
"Version": {
9-
"PrimitiveType": "String"
10-
},
11-
"DestinationTopic": {
12-
"PrimitiveType": "String"
13-
},
14-
"DestinationQueue": {
15-
"PrimitiveType": "String"
16-
}
17-
},
18-
"Documentation": "https://github.com/aws/serverless-application-model/blob/master/versions/2016-10-31.md#referable-properties-of-serverless-function"
19-
},
20-
"AWS::Serverless::HttpApi": {
21-
"Attributes": {
22-
"Stage": {
23-
"PrimitiveType": "String"
24-
},
25-
"DomainName": {
26-
"PrimitiveType": "String"
27-
}
28-
},
29-
"Documentation": "https://github.com/aws/serverless-application-model/blob/master/versions/2016-10-31.md#referable-properties-of-serverless-function"
30-
},
31-
"AWS::Serverless::RestApi": {
32-
"Attributes": {
33-
"Alias": {
34-
"Stage": "String"
35-
},
36-
"Deployment": {
37-
"PrimitiveType": "String"
38-
},
39-
"DomainName": {
40-
"PrimitiveType": "String"
41-
},
42-
"UsagePlan": {
43-
"PrimitiveType": "String"
44-
},
45-
"UsagePlanKey": {
46-
"PrimitiveType": "String"
47-
},
48-
"ApiKey": {
49-
"PrimitiveType": "String"
50-
}
51-
},
52-
"Documentation": "https://github.com/aws/serverless-application-model/blob/master/versions/2016-10-31.md#referable-properties-of-serverless-function"
2+
"ResourceTypes": {
3+
"AWS::Serverless::Function": {
4+
"Attributes": {
5+
"Alias": {
6+
"PrimitiveType": "String"
7+
},
8+
"Version": {
9+
"PrimitiveType": "String"
10+
},
11+
"DestinationTopic": {
12+
"PrimitiveType": "String"
13+
},
14+
"DestinationQueue": {
15+
"PrimitiveType": "String"
16+
}
17+
},
18+
"Documentation": "https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/sam-resource-function.html"
19+
},
20+
"AWS::Serverless::HttpApi": {
21+
"Attributes": {
22+
"Stage": {
23+
"PrimitiveType": "String"
24+
},
25+
"DomainName": {
26+
"PrimitiveType": "String"
27+
}
28+
},
29+
"Documentation": "https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/sam-resource-httpapi.html"
30+
},
31+
"AWS::Serverless::RestApi": {
32+
"Attributes": {
33+
"Alias": {
34+
"Stage": "String"
35+
},
36+
"Deployment": {
37+
"PrimitiveType": "String"
38+
},
39+
"DomainName": {
40+
"PrimitiveType": "String"
41+
},
42+
"UsagePlan": {
43+
"PrimitiveType": "String"
44+
},
45+
"UsagePlanKey": {
46+
"PrimitiveType": "String"
47+
},
48+
"ApiKey": {
49+
"PrimitiveType": "String"
50+
}
51+
},
52+
"Documentation": "https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/sam-resource-api.html"
53+
},
54+
"AWS::Serverless::StateMachine": {
55+
"Attributes": {
56+
"Name": {
57+
"PrimitiveType": "String"
5358
}
59+
},
60+
"Documentation": "https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/sam-resource-statemachine.html"
5461
}
55-
}
62+
}
63+
}

0 commit comments

Comments
 (0)