using System;
namespace Amazon.Lambda.Annotations.APIGateway
{
///
/// Maps this parameter to an HTTP header value
///
[AttributeUsage(AttributeTargets.Parameter)]
public class FromHeaderAttribute : Attribute, INamedAttribute
{
///
/// Name of the parameter
///
public string Name { get; set; }
}
}