using System.Collections.Generic; namespace Amazon.Lambda.TestTool.Runtime { public class LambdaFunctionInfo { /// /// Display friendly name of the Lambda Function. /// public string Name { get; set; } /// /// The Lambda function handler string. /// public string Handler { get; set; } public IDictionary EnvironmentVariables { get; } = new Dictionary(); } }