using System;
namespace Amazon.Lambda.Annotations
{
///
/// Indicates that this service parameter will be injected into the Lambda function invocation.
///
///
/// Services injected using the FromServices attribute are created within the scope
/// that is created for each Lambda invocation.
///
[AttributeUsage(AttributeTargets.Parameter)]
public class FromServicesAttribute : Attribute
{
}
}