diff --git a/Libraries/src/Amazon.Lambda.APIGatewayEvents/README.md b/Libraries/src/Amazon.Lambda.APIGatewayEvents/README.md index 72c8195d0..d5e09b187 100644 --- a/Libraries/src/Amazon.Lambda.APIGatewayEvents/README.md +++ b/Libraries/src/Amazon.Lambda.APIGatewayEvents/README.md @@ -2,7 +2,7 @@ This package contains classes that can be used as input types for Lambda functions that process Amazon API Gateway events. -API Gateway events consist of a request that was routed to a Lambda function by API Gateway. When this happens, API Gateway expects the result of the function to be the response that API Gateway should respond with. To see a more detailed example of this, take a look at the [Amazon.Lambda.AspNetCoreServer README.md file](Libraries/Amazon.Lambda.AspNetCoreServer/README.md). +API Gateway events consist of a request that was routed to a Lambda function by API Gateway. When this happens, API Gateway expects the result of the function to be the response that API Gateway should respond with. To see a more detailed example of this, take a look at the [Amazon.Lambda.AspNetCoreServer README.md file](Libraries/src/Amazon.Lambda.AspNetCoreServer/README.md). # Sample Function diff --git a/Libraries/src/Amazon.Lambda.AspNetCoreServer/README.md b/Libraries/src/Amazon.Lambda.AspNetCoreServer/README.md index 980c06d23..8d7d2908e 100644 --- a/Libraries/src/Amazon.Lambda.AspNetCoreServer/README.md +++ b/Libraries/src/Amazon.Lambda.AspNetCoreServer/README.md @@ -9,7 +9,7 @@ framework into the response body that API Gateway Proxy understands. ## Example Lambda Function -In the ASP.NET Core application add a class that extends from [ApiGatewayFunction](src/Amazon.Lambda.AspNetCoreServer/APIGatewayProxyFunction.cs) +In the ASP.NET Core application add a class that extends from [ApiGatewayFunction](Libraries/src/Amazon.Lambda.AspNetCoreServer/APIGatewayProxyFunction.cs) and implement the Init method. Here is an example implementation of the Lamba function in an ASP.NET Core Web API application. diff --git a/Libraries/src/Amazon.Lambda.KinesisEvents/README.md b/Libraries/src/Amazon.Lambda.KinesisEvents/README.md index 811b9754e..543980c6c 100644 --- a/Libraries/src/Amazon.Lambda.KinesisEvents/README.md +++ b/Libraries/src/Amazon.Lambda.KinesisEvents/README.md @@ -15,7 +15,7 @@ byte[] dataBytes = Convert.FromBase64String(dataBase64); MemoryStream stream = new MemoryStream(dataBytes); ``` -A Newtonsoft.Json `IContractResolver` implementation which handles this custom serialization is located in [Amazon.Lambda.Serialization.Json\AwsResolver.cs](Libraries/Amazon.Lambda.Serialization.Json/AwsResolver.cs) and [Amazon.Lambda.Serialization.Json\KinesisEventRecordDataConverter.cs](Libraries/Amazon.Lambda.Serialization.Json/KinesisEventRecordDataConverter.cs), consult this source for more information. +A Newtonsoft.Json `IContractResolver` implementation which handles this custom serialization is located in [Amazon.Lambda.Serialization.Json\AwsResolver.cs](Libraries/src/Amazon.Lambda.Serialization.Json/AwsResolver.cs) and [Amazon.Lambda.Serialization.Json\KinesisEventRecordDataConverter.cs](Libraries/src/Amazon.Lambda.Serialization.Json/KinesisEventRecordDataConverter.cs), consult this source for more information. # Sample Function diff --git a/Libraries/src/Amazon.Lambda.S3Events/README.md b/Libraries/src/Amazon.Lambda.S3Events/README.md index 5b2cba781..980d46ebe 100644 --- a/Libraries/src/Amazon.Lambda.S3Events/README.md +++ b/Libraries/src/Amazon.Lambda.S3Events/README.md @@ -10,7 +10,7 @@ If you are using this package with Amazon Lambda but are not also using `Amazon. 1. `XAmzRequestId` should be treated as `x-amz-request-id` 2. `XAmzId2` should be treated as `x-amz-id-2` -A Newtonsoft.Json `IContractResolver` implementation which handles this custom serialization is located in [Amazon.Lambda.Serialization.Json\AwsResolver.cs](Libraries/Amazon.Lambda.Serialization.Json/AwsResolver.cs), consult this source for more information. +A Newtonsoft.Json `IContractResolver` implementation which handles this custom serialization is located in [Amazon.Lambda.Serialization.Json\AwsResolver.cs](Libraries/src/Amazon.Lambda.Serialization.Json/AwsResolver.cs), consult this source for more information. # Sample Function