Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Libraries/src/Amazon.Lambda.APIGatewayEvents/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Libraries/src/Amazon.Lambda.AspNetCoreServer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion Libraries/src/Amazon.Lambda.KinesisEvents/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Libraries/src/Amazon.Lambda.S3Events/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down