-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsam.yaml
More file actions
30 lines (28 loc) · 836 Bytes
/
sam.yaml
File metadata and controls
30 lines (28 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: AWS Serverless Spring Boot API - bookapp::book-service
Globals:
Api:
EndpointConfiguration: REGIONAL
Resources:
BookServiceFunction:
Type: AWS::Serverless::Function
Properties:
Handler: bookapp.StreamLambdaHandler::handleRequest
Runtime: java8
CodeUri: build/distributions/book-service-1.0.0.zip
MemorySize: 512
Policies: AWSLambdaBasicExecutionRole
Timeout: 30
Events:
GetResource:
Type: Api
Properties:
Path: /{proxy+}
Method: any
Outputs:
BookServiceApi:
Description: URL for application
Value: !Sub 'https://${ServerlessRestApi}.execute-api.${AWS::Region}.amazonaws.com/Prod/ping'
Export:
Name: BookServiceApi