-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtemplate.yml
38 lines (38 loc) · 1.1 KB
/
template.yml
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
31
32
33
34
35
36
37
38
AWSTemplateFormatVersion: '2010-09-09'
Transform: 'AWS::Serverless-2016-10-31'
Description: An AWS Lambda application that calls the Lambda API.
Resources:
bucket:
Type: AWS::S3::Bucket
DeletionPolicy: Retain
function:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/distributions/TranscribeEmailDemo.zip
Handler: transcribe.Handler
Runtime: java8
Description: Java function
MemorySize: 512
Timeout: 500
# Function's execution role
Policies:
- AWSLambdaBasicExecutionRole
- AWSLambdaReadOnlyAccess
- AWSXrayWriteOnlyAccess
- AWSLambdaVPCAccessExecutionRole
- AmazonS3FullAccess
- AmazonSESFullAccess
- AmazonDynamoDBFullAccess
- AmazonTranscribeFullAccess
- AmazonWorkMailFullAccess
Tracing: Active
Layers:
- !Ref libs
libs:
Type: AWS::Serverless::LayerVersion
Properties:
LayerName: s3-java-lib
Description: Dependencies for the Java S3 sample app.
ContentUri: build/s3-java-lib.zip
CompatibleRuntimes:
- java8