Skip to content

Commit 118c080

Browse files
committed
Updated README.md
1 parent 0847599 commit 118c080

File tree

5 files changed

+31
-31
lines changed

5 files changed

+31
-31
lines changed

awslambdahello/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ It handles a simple AWS Lambda function that shows the content (text) of the cal
2626
* Runtime: `Java 8`
2727
* Handler: `example.Hello::myHandler`
2828
* Role: `lambda-basic-execution`
29-
* The triggers:
30-
* `Nothing`
31-
* The resources that the function's role has access to:
32-
* `Amazon CloudWatch Logs`
33-
* Basic Settings for the lambda function:
29+
* Runtime Settings for the lambda function:
3430
* Memory (MB): `512`
3531
* Timeout: `15 sec`
32+
* The resources that the function's role has access to:
33+
* `Amazon CloudWatch Logs`
34+
* The triggers:
35+
* `Nothing`
3636

3737
* Upload the Java JAR file.
3838

awslambdahellojson/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ It handles a simple AWS Lambda function that shows the content (JSON) of the cal
2626
* Runtime: `Java 8`
2727
* Handler: `example.Hello::handleRequest`
2828
* Role: `lambda-basic-execution`
29-
* The triggers:
30-
* `Nothing`
31-
* The resources that the function's role has access to:
32-
* `Amazon CloudWatch Logs`
33-
* Basic Settings for the lambda function:
29+
* Runtime Settings for the lambda function:
3430
* Memory (MB): `512`
3531
* Timeout: `15 sec`
32+
* The resources that the function's role has access to:
33+
* `Amazon CloudWatch Logs`
34+
* The triggers:
35+
* `Nothing`
3636

3737
* Upload the Java JAR file.
3838

awslambdas3copy/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -87,21 +87,21 @@ It handles an AWS Lambda function that copies an object when it appears in a S3
8787
* Runtime: `Java 8`
8888
* Handler: `example.S3CopyHandler::handleRequest`
8989
* Role: `Role-my-buckets`
90-
* The triggers:
91-
* `S3`
92-
* Bucket: `<SOURCE_BUCKET_NAME>`
93-
* Event type: `ObjectCreated`
94-
* Enable trigger: `Yes`
90+
* Runtime Settings for the lambda function:
91+
* Memory (MB): `1024`
92+
* Timeout: `10 sec`
9593
* The resources that the function's role has access to:
9694
* `Amazon CloudWatch`
9795
* `Amazon CloudWatch Logs`
9896
* `Amazon S3`
9997
* Lambda obtained information from the policy statements: `Managed policy Policy-my-buckets`:
10098
* `s3:GetObject` --> `Allow: arn:aws:s3:::sourcebucket/*`
10199
* `s3:PutObject` --> `Allow: arn:aws:s3:::targetbucket/*`
102-
* Basic Settings for the lambda function:
103-
* Memory (MB): `1024`
104-
* Timeout: `10 sec`
100+
* The triggers:
101+
* `S3`
102+
* Bucket: `<SOURCE_BUCKET_NAME>`
103+
* Event type: `ObjectCreated`
104+
* Enable trigger: `Yes`
105105

106106
* Create the AWS Lambda environment variable `TARGET_BUCKET` and set its value to the name of your target bucket.
107107

awslambdas3event/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,16 @@ It handles an AWS Lambda function that sends information to the log about an obj
2727
* Runtime: `Java 8`
2828
* Handler: `example.S3EventHandler::handleRequest`
2929
* Role: `lambda-basic-execution`
30+
* Runtime Settings for the lambda function:
31+
* Memory (MB): `512`
32+
* Timeout: `15 sec`
33+
* The resources that the function's role has access to:
34+
* `Amazon CloudWatch Logs`
3035
* The triggers:
3136
* `S3`
3237
* Bucket: `<BUCKET_NAME>`
3338
* Event type: `ObjectCreated`
3439
* Enable trigger: `Yes`
35-
* The resources that the function's role has access to:
36-
* `Amazon CloudWatch Logs`
37-
* Basic Settings for the lambda function:
38-
* Memory (MB): `512`
39-
* Timeout: `15 sec`
4040

4141
* Upload the Java JAR file.
4242

awslambdas3move/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,9 @@ It handles an AWS Lambda function that moves an object when it appears in a S3 b
8888
* Runtime: `Java 8`
8989
* Handler: `example.S3MoveHandler::handleRequest`
9090
* Role: `Role-my-buckets`
91-
* The triggers:
92-
* `S3`
93-
* Bucket: `<SOURCE_BUCKET_NAME>`
94-
* Event type: `ObjectCreated`
95-
* Enable trigger: `Yes`
91+
* Runtime Settings for the lambda function:
92+
* Memory (MB): `1024`
93+
* Timeout: `10 sec`
9694
* The resources that the function's role has access to:
9795
* `Amazon CloudWatch`
9896
* `Amazon CloudWatch Logs`
@@ -101,9 +99,11 @@ It handles an AWS Lambda function that moves an object when it appears in a S3 b
10199
* `s3:GetObject` --> `Allow: arn:aws:s3:::sourcebucket/*`
102100
* `s3:DeleteObject` --> `Allow: arn:aws:s3:::sourcebucket/*`
103101
* `s3:PutObject` --> `Allow: arn:aws:s3:::targetbucket/*`
104-
* Basic Settings for the lambda function:
105-
* Memory (MB): `1024`
106-
* Timeout: `10 sec`
102+
* The triggers:
103+
* `S3`
104+
* Bucket: `<SOURCE_BUCKET_NAME>`
105+
* Event type: `ObjectCreated`
106+
* Enable trigger: `Yes`
107107

108108
* Create the AWS Lambda environment variable `TARGET_BUCKET` and set its value to the name of your target bucket.
109109

0 commit comments

Comments
 (0)