using Amazon.Lambda.Core;
namespace Amazon.Lambda.AspNetCoreServer.Hosting;
///
/// Options for configuring AWS Lambda hosting for ASP.NET Core
///
public class HostingOptions
{
///
/// The ILambdaSerializer used by Lambda to convert the incoming event JSON into the .NET event type and serialize the .NET response type
/// back to JSON to return to Lambda.
///
public ILambdaSerializer Serializer { get; set; }
}