-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtemplate-mvn.yml
35 lines (35 loc) · 999 Bytes
/
template-mvn.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
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: target/s3-java-1.0-SNAPSHOT.jar
Handler: transcribe.Handler::handleRequest
Runtime: java8
Description: Java function
MemorySize: 512
Timeout: 10
# Function's execution role
Policies:
- AWSLambdaBasicExecutionRole
- AWSLambdaReadOnlyAccess
- AWSXrayWriteOnlyAccess
- AWSLambdaVPCAccessExecutionRole
- AmazonS3FullAccess
Tracing: Active
Events:
s3Notification:
Type: S3
Properties:
Bucket: !Ref bucket
Events: s3:ObjectCreated:*
Filter:
S3Key:
Rules:
- Name: prefix
Value: inbound/