using System;
namespace Amazon.Lambda.Annotations.APIGateway
{
///
/// Maps this parameter to a resource path segment
///
[AttributeUsage(AttributeTargets.Parameter)]
public class FromRouteAttribute : Attribute, INamedAttribute
{
///
/// Name of the parameter
///
public string Name { get; set; }
}
}