Skip to content

Commit 56aaf2c

Browse files
committed
readmes
1 parent 5c6f944 commit 56aaf2c

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
## AWS Lambda Developer Guide
22

3-
Lambda User Guide and API operations and how it integrates with other AWS Service
3+
This repository contains the Markdown version of the AWS Lambda Developer Guide and sample applications that you can deploy to learn about Lambda concepts and features.
44

5-
Start with documentation [index](/doc_source/index.md)
5+
Table of contents: [index.md](/doc_source/index.md)
66

77
## License Summary
88

sample-apps/blank-csharp/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# EC2 Spot Instance function
1+
# Blank function (C#)
22

33
![Architecture](/sample-apps/blank-csharp/images/sample-blank-csharp.png)
44

sample-apps/ec2-spot/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# EC2 Spot Instance function
1+
# EC2 spot instance function
22

33
![Architecture](/sample-apps/ec2-spot/images/sample-ec2spot.png)
44

sample-apps/error-processor/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Error Processing with CloudWatch Logs and X-Ray
1+
# Error processing with CloudWatch Logs and X-Ray
22

33
This sample application triggers a Lambda function when CloudWatch Logs detects the word ERROR in a log stream. The function downloads the full log stream and the X-Ray trace for the request that caused the error. It stores both in an Amazon S3 bucket.
44

sample-apps/java-basic/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Basic Function with Minimal Dependencies (Java)
1+
# Basic function with minimal dependencies (Java)
22

33
![Architecture](/sample-apps/java-basic/images/sample-java-basic.png)
44

sample-apps/java-events-v1sdk/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Basic Function with Event Library Types and the AWS SDK (Java)
1+
# Basic function with event library types and the AWS SDK (Java)
22

33
This sample application shows the use of the `aws-lambda-java-events` library with event types that require AWS SDK as a dependency. A separate handler class is defined for each input type. For other event types (which don't require the AWS SDK), see the `java-events` sample.
44

sample-apps/java-events/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Basic Function with Event Library Types (Java)
1+
# Basic function with event library types (Java)
22

33
This sample application shows the use of the `aws-lambda-java-events` library with various event types. To keep the deployment size minimal, it includes only types that can be used without adding the AWS SDK as a dependency. A separate handler class is defined for each input type.
44

sample-apps/list-manager/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Processing a Kinesis Stream with Database Resources in a VPC
1+
# Processing a Kinesis stream with database resources in a VPC
22

33
This sample application processes records from an Amazon Kinesis stream to create and update lists. It uses a private VPC to connect to an Amazon Relational Database Service (Amazon RDS) database. It uses a VPC endpoint to connect to Amazon DynamoDB. The application also uses AWS Secrets Manager, AWS X-Ray, and AWS CodeDeploy.
44

sample-apps/rds-mysql/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Managing a MySQL for RDS Database in a Private VPC
1+
# Managing a MySQL for RDS Database in a private VPC
22

33
This sample application runs SQL queries on a MySQL database. It uses a private VPC to connect to an Amazon Relational Database Service (Amazon RDS) database. The application also uses AWS Secrets Manager and AWS X-Ray.
44

0 commit comments

Comments
 (0)