using System;
namespace Amazon.Lambda.Annotations.APIGateway
{
///
/// Maps this parameter to the HTTP request body
///
///
/// If the parameter is a complex type then the request body will be assumed to be JSON and deserialized into the type.
///
[AttributeUsage(AttributeTargets.Parameter)]
public class FromBodyAttribute : Attribute
{
}
}