File tree Expand file tree Collapse file tree 4 files changed +48
-0
lines changed
spring-cloud-function-adapters/spring-cloud-function-adapter-aws/src/test/resources/META-INF
spring-cloud-function-samples/function-sample-aws
src/main/resources/META-INF Expand file tree Collapse file tree 4 files changed +48
-0
lines changed Original file line number Diff line number Diff line change @@ -37,3 +37,5 @@ node_modules
3737build
3838package.json
3939package-lock.json
40+ * samconfig.toml
41+ * .aws-sam /
Original file line number Diff line number Diff line change 1+ eventSourceARN, ApproximateCreationDateTime
Original file line number Diff line number Diff line change 1+ routeKey
2+ rawQueryString
3+ path
4+ resource
Original file line number Diff line number Diff line change 1+ AWSTemplateFormatVersion : ' 2010-09-09'
2+ Transform : AWS::Serverless-2016-10-31
3+ Description : Example function as lambda deployment
4+
5+ Globals :
6+ Api :
7+ # API Gateway regional endpoints
8+ EndpointConfiguration : REGIONAL
9+
10+ Resources :
11+ PetStoreMVC :
12+ Type : AWS::Serverless::Function
13+ Properties :
14+ # AutoPublishAlias: bcn
15+ FunctionName : uppercase
16+ Handler : org.springframework.cloud.function.adapter.aws.FunctionInvoker::handleRequest
17+ Runtime : java17
18+ SnapStart :
19+ ApplyOn : PublishedVersions
20+ CodeUri : .
21+ MemorySize : 1024
22+ Policies : AWSLambdaBasicExecutionRole
23+ Timeout : 30
24+ Environment :
25+ Variables :
26+ MAIN_CLASS : example.FunctionConfiguration
27+ Events :
28+ HttpApiEvent :
29+ Type : HttpApi
30+ Properties :
31+ TimeoutInMillis : 20000
32+ PayloadFormatVersion : ' 1.0'
33+
34+ Outputs :
35+ PetStoreMVCApi :
36+ Description : URL for application
37+ Value : !Sub 'https://${ServerlessHttpApi}.execute-api.${AWS::Region}.amazonaws.com/uppercase'
38+ Export :
39+ Name : UppercaseAPI
40+
41+
You can’t perform that action at this time.
0 commit comments