namespace Amazon.Lambda.SimpleEmailEvents.Actions { /// /// The lambda receipt's action. /// public class LambdaReceiptAction : IReceiptAction { /// /// The type of the action, e.g. "Lambda", "S3" /// public string Type { get; set; } /// /// The type of invocation, e.g. "Event" /// public string InvocationType { get; set; } /// /// The ARN of this function. /// public string FunctionArn { get; set; } } }